예제 #1
0
 /**
  * Initialize instance
  *
  * @param Charcoal_Config $config   configuration data
  */
 public function configure($config)
 {
     parent::configure($config);
     $config->set(s('priority'), Charcoal_EnumEventPriority::SYSTEM);
     parent::configure($config);
 }
예제 #2
0
 /**
  *    コンストラクタ
  */
 public function __construct(Charcoal_Integer $abort_type = NULL, Charcoal_Integer $exit_code = NULL)
 {
     parent::__construct();
     $this->_exit_code = $exit_code ? $exit_code : i(Event::EXIT_CODE_ABORT);
     $this->_abort_type = $abort_type ? $abort_type : i(Event::ABORT_TYPE_AFTER_THIS_LOOP);
 }
예제 #3
0
 /**
  * コンストラクタ
  */
 public function __construct(Charcoal_IRequest $request)
 {
     parent::__construct();
     $this->_request = $request;
 }
예제 #4
0
 /**
  *    Construct object
  */
 public function __construct()
 {
     parent::__construct();
 }