Exemplo n.º 1
0
 /**
  * @param array $options
  *
  * @return string
  */
 protected function getLabel(array $options)
 {
     $label = parent::getLabel($options);
     if (!$label and isset($options['entity'])) {
         $label = $this->env->entity($options['entity'])->getPluralTitle();
     }
     return $label;
 }