Exemplo n.º 1
0
 /**
  * Initializes the options for the object
  *
  * Called from {@link __construct()} as a first step of object instantiation.
  *
  * @param   KObjectConfig $config An optional KObjectConfig object with configuration options
  */
 protected function _initialize(KObjectConfig $config)
 {
     $config->append(array('model' => null));
     parent::_initialize($config);
 }
Exemplo n.º 2
0
 /**
  * Initializes the options for the object
  *
  * Called from {@link __construct()} as a first step of object instantiation.
  *
  * @param   object  An optional KConfig object with configuration options.
  * @return void
  */
 protected function _initialize(KConfig $config)
 {
     $config->append(array('data' => null, 'new' => true, 'status' => null, 'status_message' => '', 'identity_column' => null));
     parent::_initialize($config);
 }
Exemplo n.º 3
0
 /**
  * Initializes the options for the object
  *
  * Called from {@link __construct()} as a first step of object instantiation.
  *
  * @param   KObjectConfig $config An optional ObjectConfig object with configuration options
  * @return  void
  */
 protected function _initialize(KObjectConfig $config)
 {
     $config->append(array('parameters' => array()));
     parent::_initialize($config);
 }
Exemplo n.º 4
0
 /**
  * Initializes the options for the object
  *
  * Called from {@link __construct()} as a first step of object instantiation.
  *
  * @param  KObjectConfig $config An optional KObjectConfig object with configuration options.
  * @return void
  */
 protected function _initialize(KObjectConfig $config)
 {
     $config->append(array('data' => null, 'status' => null, 'status_message' => '', 'identity_key' => null));
     parent::_initialize($config);
 }
Exemplo n.º 5
0
 /**
  * Initializes the options for the object
  *
  * Called from {@link __construct()} as a first step of object instantiation.
  *
  * @param   KObjectConfig $config An optional ObjectConfig object with configuration options
  */
 protected function _initialize(KObjectConfig $config)
 {
     $config->append(array('namespace' => '__' . $this->getIdentifier()->name, 'separator' => '.'));
     parent::_initialize($config);
 }
Exemplo n.º 6
0
 /**
  * Initializes the options for the object
  *
  * Called from {@link __construct()} as a first step of object instantiation.
  *
  * @param 	object 	An optional KConfig object with configuration options.
  * @return void
  */
 protected function _initialize(KConfig $config)
 {
     $config->append(array('data' => array()));
     parent::_initialize($config);
 }
Exemplo n.º 7
0
 /**
  * Initializes the options for the object
  *
  * Called from {@link __construct()} as a first step of object instantiation.
  *
  * @param  KObjectConfig $config An optional ObjectConfig object with configuration options.
  * @return void
  */
 protected function _initialize(KObjectConfig $config)
 {
     $config->append(array('table' => $this->getIdentifier()->name, 'data' => null, 'status' => null, 'status_message' => '', 'identity_column' => null));
     parent::_initialize($config);
 }