From: hickert Date: Wed, 19 May 2010 13:22:38 +0000 (+0000) Subject: Removed old intermediate step to add services X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=fc0599be79c79a5f5104bc3bee409f8e2cc95d33;p=gosa.git Removed old intermediate step to add services git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@18555 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/gosa-plugins/systems/admin/systems/class_serverService.inc b/gosa-plugins/systems/admin/systems/class_serverService.inc index 711cc48ee..7cb9b9683 100644 --- a/gosa-plugins/systems/admin/systems/class_serverService.inc +++ b/gosa-plugins/systems/admin/systems/class_serverService.inc @@ -116,10 +116,8 @@ class ServerService extends management parent::__construct($config, $this->ui, "services", $headpage); $this->registerAction("new", "newService"); $this->registerAction("remove", "removeService"); - $this->registerAction("newServiceSelected", "newServiceSelected"); $this->registerAction("saveService", "saveService"); $this->registerAction("cancelService", "cancelEdit"); - $this->registerAction("newServiceCancel", "closeDialogs"); $this->registerAction("restart", "updateServiceStatus"); $this->registerAction("stop", "updateServiceStatus"); $this->registerAction("start", "updateServiceStatus"); @@ -132,8 +130,6 @@ class ServerService extends management function detectPostActions() { $action = management::detectPostActions(); - if(isset($_POST['SaveServiceAdd'])) $action['action'] = "newServiceSelected"; - if(isset($_POST['CancelServiceAdd'])) $action['action'] = "newServiceCancel"; if(isset($_POST['SaveService'])) $action['action'] = "saveService"; if(isset($_POST['CancelService'])) $action['action'] = "cancelService"; if(preg_match("/^instantNew_/",$action['action'])){ @@ -180,28 +176,6 @@ class ServerService extends management } - /*! \brief Let the user choose the new service to create. - */ - function newService() - { - $this->dialog = TRUE; - $this->dialogObject = new ServiceAddDialog($this->config,$this->dn,$this); - } - - - /*! \brief Create the selected service. - */ - function newServiceSelected() - { - $this->closeDialogs(); - $serv = $_POST['ServiceName']; - $this->plugins[$serv]->is_account = true; - $this->dialogObject = $this->plugins[$serv]; - $this->current = $serv; - $this->dialog = TRUE; - } - - /*! \brief Create the selected service. */ function instantNewService($action, $targets, $all) diff --git a/gosa-plugins/systems/admin/systems/services/ServiceAddDialog.tpl b/gosa-plugins/systems/admin/systems/services/ServiceAddDialog.tpl deleted file mode 100644 index 2943feaa2..000000000 --- a/gosa-plugins/systems/admin/systems/services/ServiceAddDialog.tpl +++ /dev/null @@ -1,35 +0,0 @@ -
 
-
- {t}Adding a new service to the current server{/t} -
-
-

-{t}This dialog allows you to add new services to the currenty edited server object. The box below shows all available but not already used services.{/t} -
-
-

-{if $Services} -
-
{t}Service to add{/t}   - -{else} -
- {t}All available services are already in use.{/t} -
-{/if} -
-
-
-

-

- - -   - - -
- diff --git a/gosa-plugins/systems/admin/systems/services/class_ServiceAddDialog.inc b/gosa-plugins/systems/admin/systems/services/class_ServiceAddDialog.inc deleted file mode 100644 index 63872dc78..000000000 --- a/gosa-plugins/systems/admin/systems/services/class_ServiceAddDialog.inc +++ /dev/null @@ -1,56 +0,0 @@ -"Config object" , "dn"=>"Object dn"); - - /* This plugin does not have any ocs */ - var $objectclasses = array(); - var $parent = NULL; - - function ServiceAddDialog(&$config,$dn,$parent) - { - plugin::plugin($config); - $this->parent = $parent; - } - - 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(){;} - function save(){} - -} -// vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler: -?>