コード例 #1
0
 /**
  * Return all values of a property
  *
  * @param string $name
  * @return array
  */
 function getProperties($name)
 {
     $ops = ObjectProperties::getAllProperties($this, $name);
     $ret = array();
     foreach ($ops as $op) {
         $ret[] = $op->getPropertyValue();
     }
     return $ret;
 }