Beispiel #1
0
 /**
  * {@inheritdoc}
  */
 protected function config($name)
 {
     // Get the editable config from the Rules UI handlers, such that any
     // interim changes to the contained Rules component are picked up.
     $config = $this->rulesUiHandler ? $this->rulesUiHandler->getConfig() : NULL;
     if ($config->getName() == $name && in_array($name, $this->getEditableConfigNames())) {
         return $config;
     }
     return parent::config($name);
 }