Esempio n. 1
0
 /**
  * Initializes the options for the object
  *
  * Called from {@link __construct()} as a first step of object instantiation.
  *
  * @param   ObjectConfig $object An optional ObjectConfig object with configuration options
  * @return  void
  */
 protected function _initialize(ObjectConfig $config)
 {
     $config->append(array('stack' => $this->getObject('lib:object.stack'), 'context' => new CommandContext(), 'enabled' => true, 'break_condition' => false));
     parent::_initialize($config);
 }