Exemple #1
0
 /**
  * Get an array of physical descriptions of the item.
  *
  * @return array
  */
 public function getPhysicalDescriptions()
 {
     $physDesc = parent::getPhysicalDescriptions();
     if (isset($this->fields['material'])) {
         $physDesc = array_merge($physDesc, $this->fields['material']);
     }
     return $physDesc;
 }