Пример #1
0
 /**
  * Returns the properties of this object.
  *
  * @return array
  */
 public function getProperties()
 {
     if ($this->indexed === NULL) {
         $this->loadIndexRecord();
     }
     return parent::getProperties();
 }
Пример #2
0
 /**
  * Returns the properties of this object.
  *
  * @return array
  */
 public function getProperties()
 {
     return array_merge(parent::getProperties(), array_diff_key($this->_getMetaData(), parent::getProperties()));
 }
Пример #3
0
 /**
  * Returns the properties of this object.
  *
  * @return array
  */
 public function getProperties()
 {
     if (!$this->metaDataLoaded) {
         $this->loadMetaData();
     }
     return array_merge(parent::getProperties(), array_diff_key((array) $this->metaDataProperties, parent::getProperties()));
 }