From: hickert Date: Tue, 15 May 2007 08:46:21 +0000 (+0000) Subject: removed senseless class X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=edbcac0b6f08748733f4cd838c700be1c9599c97;p=gosa.git removed senseless class Added logging to asterisk service git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@6383 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/plugins/admin/systems/class_goFonServer.inc b/plugins/admin/systems/class_goFonServer.inc index b8878786f..37f4b8ac9 100644 --- a/plugins/admin/systems/class_goFonServer.inc +++ b/plugins/admin/systems/class_goFonServer.inc @@ -30,7 +30,7 @@ class goFonServer extends goService{ function goFonServer($config,$dn) { - plugin::plugin($config,$dn); + goService::goService($config,$dn); $this->DisplayName = _("VoIP service"); } diff --git a/plugins/admin/systems/class_inventory.inc b/plugins/admin/systems/class_inventory.inc deleted file mode 100644 index c0ec0e685..000000000 --- a/plugins/admin/systems/class_inventory.inc +++ /dev/null @@ -1,67 +0,0 @@ - "Eins ist toll", "zwei" => "Zwei ist noch besser"); - - /* attribute list for save action */ - var $ignore_account= TRUE; - var $attributes= array(); - var $objectclasses= array("whatever"); - - function inventory ($config, $dn= NULL, $parent= NULL) - { - plugin::plugin ($config, $dn, $parent); - } - - function execute() - { - /* Call parent execute */ - plugin::execute(); - - /* Fill templating stuff */ - $smarty= get_smarty(); - $display= ""; - - /* Do we need to flip is_account state? */ - if (isset($_POST['modify_state'])){ - $this->is_account= !$this->is_account; - } - - /* Show tab dialog headers */ - if ($this->is_account){ - $display= $this->show_disable_header(_("Remove DNS service"), - _("This server has DNS features enabled. You can disable them by clicking below.")); - } else { - $display= $this->show_enable_header(_("Add DNS service"), - _("This server has DNS features disabled. You can enable them by clicking below.")); - return ($display); - } - - $display.= $smarty->fetch(get_template_path('servdns.tpl', TRUE)); - return($display); - } - - function remove_from_parent() - { - } - - function save_object() - { - } - - function check() - { - } - - function save() - { - } - -} - -// vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler: -?>