Esempio n. 1
0
 /**
  * {@inheritdoc}
  */
 public function buildFieldView(SearchFieldView $view, FieldConfigInterface $config, array $options)
 {
     if (null !== $this->parent) {
         $this->parent->buildFieldView($view, $config, $options);
     }
     $this->innerType->buildView($view, $config, $options);
     foreach ($this->typeExtensions as $extension) {
         $extension->buildView($config, $view);
     }
 }