Ejemplo n.º 1
0
 public function getPiccoAttributeList()
 {
     if ($this->piccoAttributeList === null) {
         $this->piccoAttributeList = array_filter(parent::getAttributeList(), function ($value, $key) {
             return strpos($key, 'p:') !== false;
         }, ARRAY_FILTER_USE_BOTH);
     }
     return $this->piccoAttributeList;
 }