Example #1
0
 /**
  * Display a warning if the service configuration is not inherited on project creation
  */
 public function displayDuplicateInheritanceWarning()
 {
     if ($this->project->isTemplate() && !$this->isInheritedOnDuplicate()) {
         $GLOBALS['HTML']->addFeedback('warning', $GLOBALS['Language']->getText('global', 'service_conf_not_inherited'));
     }
 }