X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=gosa-plugins%2Fgofax%2Fgofax%2Ffaxaccount%2Fclass_gofaxAccount.inc;h=22381c1b41ebc790c3788adee5d3fe10272c0ef4;hb=e93750c3ba3ee6f886b73ef86314904645e9800d;hp=b1283972c20d4cccfc8a45e77a2b2cdcd31c32aa;hpb=fbf8e4356f625423e3ccfcb0c6520942726a44e1;p=gosa.git diff --git a/gosa-plugins/gofax/gofax/faxaccount/class_gofaxAccount.inc b/gosa-plugins/gofax/gofax/faxaccount/class_gofaxAccount.inc index b1283972c..22381c1b4 100644 --- a/gosa-plugins/gofax/gofax/faxaccount/class_gofaxAccount.inc +++ b/gosa-plugins/gofax/gofax/faxaccount/class_gofaxAccount.inc @@ -5,6 +5,7 @@ class gofaxAccount extends plugin /* Definitions */ var $plHeadline= "FAX"; var $plDescription= "This does something"; + var $plIcon = "plugins/gofax/images/plugin.png"; /* Department list shown in the divSelectList*/ var $departments; @@ -160,7 +161,7 @@ class gofaxAccount extends plugin /* Do we represent a valid account? */ if (!$this->is_account && $this->parent === NULL){ - $display= "\"\" ". + $display= "\"\" ". msgPool::noValidExtension(_("GOfax")).""; $display.= back_to_main(); return ($display); @@ -379,9 +380,9 @@ class gofaxAccount extends plugin } /* Show dialog */ - $smarty->assign("search_image", get_template_path('images/search.png')); - $smarty->assign("usearch_image", get_template_path('images/search_user.png')); - $smarty->assign("tree_image", get_template_path('images/tree.png')); + $smarty->assign("search_image", get_template_path('images/lists/search.png')); + $smarty->assign("usearch_image", get_template_path('images/lists/search-user.png')); + $smarty->assign("tree_image", get_template_path('images/lists/search-subtree.png')); $smarty->assign("infoimage", get_template_path('images/info.png')); $smarty->assign("launchimage", get_template_path('images/lists/action.png')); $smarty->assign("departments", $this->config->idepartments); @@ -471,7 +472,7 @@ class gofaxAccount extends plugin if(!isset($this->config->departments[trim($key)])){ $this->config->departments[trim($key)]=""; } - $field1 = array("string" => "department","attach"=>"style='width:16px;text-align:center;'"); + $field1 = array("string" => "department","attach"=>"style='width:16px;text-align:center;'"); $field2 = array("string" => sprintf($linkopen,base64_encode($key),$val),"attach"=>" style='border:none'"); $divSel->AddEntry(array($field1,$field2)); } @@ -554,7 +555,7 @@ class gofaxAccount extends plugin $this->config->departments[trim($key)]=""; } - $field1 = array("string" => "department","attach"=>"style='width:16px;text-align:center;'"); + $field1 = array("string" => "department","attach"=>"style='width:16px;text-align:center;'"); $field2 = array("string" => sprintf($linkopen,base64_encode($key),$val),"attach"=>" style='border:none'"); $divSel->AddEntry(array($field1,$field2)); } @@ -869,15 +870,15 @@ class gofaxAccount extends plugin "plOptions" => array(), "plProvidedAcls" => array( - "goFaxIsEnabled" => _("Enable/Disable fax"), - "goFaxRBlocklist" => _("Receive blocklist"), - "goFaxSBlocklist" => _("Send blocklist"), "facsimileTelephoneNumber" => _("Fax number"), // goFaxDeliveryMode + "goFaxLanguage" => _("Language"), + "goFaxFormat" => _("Delivery format"), "facsimileAlternateTelephoneNumber" => _("Alternate fax number"), // goFaxDeliveryMode + "goFaxIsEnabled" => _("Enable/Disable fax"), "faxtomail" => _("Deliver fax as mail"), "faxtoprinter" => _("Deliver fax to printer"), - "goFaxFormat" => _("Delivery format"), - "goFaxLanguage" => _("Language")) + "goFaxRBlocklist" => _("Receive blocklist"), + "goFaxSBlocklist" => _("Send blocklist")) )); }