Пример #1
0
 function __construct(&$parent, $options)
 {
     parent::__construct($parent, $options);
     assert(isset($options['field']));
     $this->_key = $options['field'];
     $this->_destinationKey = isset($options['destinationField']) ? $options['destinationField'] : NULL;
 }
Пример #2
0
 function __construct(&$parent, $options)
 {
     parent::__construct($parent, $options);
     assert(isset($options['field']));
     $this->_key = $options['field'];
     assert(!is_null($this->_destinationKey));
     $this->_destinationKey = $options['destinationField'];
 }
Пример #3
0
 function __construct(&$parent, $options)
 {
     parent::__construct($parent, $options);
     $this->_objectName = $options['objectName'] . ':' . $options['name'];
     $this->_bindTo = $options['bindTo'];
 }