Ejemplo n.º 1
0
 /**
  * Get meta information
  *
  * @return array
  */
 public function getMeta()
 {
     $meta = parent::getMeta();
     $meta = $this->customizeAttributeCode($meta);
     $meta = $this->customizeFrontendLabels($meta);
     $meta = $this->customizeOptions($meta);
     return $meta;
 }
 /**
  * {@inheritdoc}
  */
 public function getMeta()
 {
     $meta = parent::getMeta();
     /** @var ModifierInterface $modifier */
     foreach ($this->pool->getModifiersInstances() as $modifier) {
         $meta = $modifier->modifyMeta($meta);
     }
     return $meta;
 }
 /**
  * {@inheritdoc}
  */
 public function getMeta()
 {
     $this->meta = ['data' => ['children' => ['parent' => ['notice' => $this->getNotice()]]]];
     return parent::getMeta();
 }