Ejemplo n.º 1
0
 /**
  * Returns the properties of this object.
  *
  * @return array
  */
 public function getProperties()
 {
     if ($this->indexed === NULL) {
         $this->loadIndexRecord();
     }
     return parent::getProperties();
 }
Ejemplo n.º 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()));
 }
Ejemplo n.º 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()));
 }