Code

Execute parents execute() method child classes of plugin
authorhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Thu, 11 Mar 2010 09:03:56 +0000 (09:03 +0000)
committerhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Thu, 11 Mar 2010 09:03:56 +0000 (09:03 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@16431 594d385d-05f5-0310-b6e9-bd551577e9d8

gosa-plugins/systems/admin/systems/services/class_ServiceAddDialog.inc

index 34ea757fb60eb36524a4e86d7f060c33a727cd98..63872dc786491049f5018c07f6d777db06ad84d3 100644 (file)
@@ -38,12 +38,14 @@ class ServiceAddDialog extends plugin{
 
   function execute()
   {
+    plugin::execute();
+
     $smarty = get_smarty();
     $services = $this->parent->getAllUnusedServices();
     natcasesort($services);
     $smarty->assign("Services",$services);
     return($smarty->fetch(get_template_path("ServiceAddDialog.tpl", TRUE,dirname(__FILE__))));
- }
 }
 
   function check(){ return array();}
   function save_object(){;}