From: hickert Date: Tue, 18 Jul 2006 07:09:43 +0000 (+0000) Subject: Added phone acls X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=cf29193ba111bef6e0d94d1a29087bc1e29d419b;p=gosa.git Added phone acls git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@4190 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/plugins/admin/systems/class_phoneGeneric.inc b/plugins/admin/systems/class_phoneGeneric.inc index e85dc25cf..f43f06979 100644 --- a/plugins/admin/systems/class_phoneGeneric.inc +++ b/plugins/admin/systems/class_phoneGeneric.inc @@ -400,6 +400,32 @@ class phoneGeneric extends plugin $this->postcreate(); } + + /* Return plugin informations for acl handling + #FIXME FAIscript seams to ununsed within this class... */ + function plInfo() + { + return (array( + "plShortName" => _("Generic"), + "plDescription" => _("Phone generic"), + "plSelfModify" => FALSE, + "plDepends" => array(), + "plPriority" => 0, + "plSection" => array("administration"), + "plCategory" => array("phone" => array("description" => _("Phone hardware"), + "objectClass" => _("goFonHardware"))), + "plProvidedAcls"=> array( + "cn" => _("Name"), + "description" => _("Description"), + "goFonType" => _("Mode"), + "goFonDmtfMode" => _("DTMF mode"), + "goFonDefaultIP" => _("Default ip"), + "goFonQualify" => _("Qualify"), + "selected_categorie" => _("Hardware type")) + )); + } + + } // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler: