Exemplo n.º 1
0
 /**
  * {@inheritdoc}
  */
 public function filters($instance_id = NULL)
 {
     if (!isset($this->filterCollection)) {
         $this->filterCollection = new FilterPluginCollection(\Drupal::service('plugin.manager.filter'), $this->filters);
         $this->filterCollection->sort();
     }
     if (isset($instance_id)) {
         return $this->filterCollection->get($instance_id);
     }
     return $this->filterCollection;
 }