X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=plugins%2Fadmin%2Fsystems%2Fclass_glpiPrinterAccount.inc;h=65f090b1146f89b15857334ae3709c1c6a293f0d;hb=5f1f63cbff1a76de561e6e556342179ace8ca24e;hp=e44e000bdcb35166616d6cbd5edb83ed6ebf0c9e;hpb=4f507bf6c24fd9a5c50928b3a0c334ba5529c42d;p=gosa.git diff --git a/plugins/admin/systems/class_glpiPrinterAccount.inc b/plugins/admin/systems/class_glpiPrinterAccount.inc index e44e000bd..65f090b11 100644 --- a/plugins/admin/systems/class_glpiPrinterAccount.inc +++ b/plugins/admin/systems/class_glpiPrinterAccount.inc @@ -2,11 +2,6 @@ class glpiPrinterAccount extends plugin { - /* CLI vars */ - var $cli_summary= "Manage server basic objects"; - var $cli_description= "Some longer text\nfor help"; - var $cli_parameters= array("eins" => "Eins ist toll", "zwei" => "Zwei ist noch besser"); - /* attribute list for save action */ var $ignore_account= FALSE; var $attributes= array("ID","name","contact","ramSize","flags_serial","flags_par","flags_usb", @@ -191,9 +186,18 @@ class glpiPrinterAccount extends plugin /* Do we need to flip is_account state? */ if (isset($_POST['modify_state'])){ - $this->is_account= !$this->is_account; + + /* Only change account state if allowed */ + if($this->is_account && $this->acl == "#all#"){ + $this->is_account= !$this->is_account; + $this->is_modified = true; + }elseif(!$this->is_account && chkacl($this->acl,"create") == ""){ + $this->is_account= !$this->is_account; + $this->is_modified = true; + } } + /* Show tab dialog headers */ if ($this->is_account){ $display= $this->show_header(_("Remove inventory"), @@ -211,7 +215,7 @@ class glpiPrinterAccount extends plugin */ /* Rename was requested */ - if(isset($_POST['Rename_PType_OK'])){ + if(isset($_POST['Rename_PType_OK']) && chkacl($this->acl,"type") == ""){ $tmp = $this->handle->getPrinterTypes(); $allok = true; foreach($tmp as $id => $name){ @@ -235,7 +239,7 @@ class glpiPrinterAccount extends plugin /* Printer type management */ - if(isset($_POST['edit_type'])){ + if(isset($_POST['edit_type']) && chkacl($this->acl,"type") == ""){ $this->dialog = true; $this->edit_type=true; } @@ -249,7 +253,7 @@ class glpiPrinterAccount extends plugin /* This appends a new printer to our sytem types */ - if((isset($_POST['add_type']))&&(!empty($_POST['type_string']))){ + if((isset($_POST['add_type']))&&(!empty($_POST['type_string'])) && chkacl($this->acl,"type") == ""){ $tmp = $this->handle->getPrinterTypes(); $allok = true; @@ -267,7 +271,7 @@ class glpiPrinterAccount extends plugin /* Remove selected type from our printer types list */ - if((isset($_POST['del_type']))&&(!empty($_POST['select_type']))){ + if((isset($_POST['del_type']))&&(!empty($_POST['select_type'])) && chkacl($this->acl,"type") == ""){ $tmp = $this->handle->is_printerTypeUsed($_POST['select_type']); if(count($tmp)){ $str = ""; @@ -283,7 +287,7 @@ class glpiPrinterAccount extends plugin /* Rename selected printer type to given string */ - if((isset($_POST['rename_type']))&&(!empty($_POST['select_type']))||($this->rename)){ + if((isset($_POST['rename_type']))&&(!empty($_POST['select_type']))||($this->rename) && chkacl($this->acl,"type") == ""){ $this->rename = true; $smarty->assign("Method","rename"); @@ -321,7 +325,7 @@ class glpiPrinterAccount extends plugin /* Open dialog which allows to edit the manufacturers */ - if(isset($_POST['edit_manufacturer'])){ + if(isset($_POST['edit_manufacturer']) && chkacl($this->acl,"manufacturer") == ""){ $this->cur_dialog = new glpiManufacturer($this->config,$this->dn); $this->dialog = true; $this->editManufacturer =true; @@ -329,7 +333,7 @@ class glpiPrinterAccount extends plugin /* Close manufacturer editing dialog */ - if((isset($_POST['close_edit_manufacturer']))&&($this->editManufacturer)){ + if((isset($_POST['close_edit_manufacturer']))&&($this->editManufacturer) && chkacl($this->acl,"manufacturer") == ""){ $this->dialog = false; $this->cur_dialog = false; $this->editManufacturer=false; @@ -345,14 +349,14 @@ class glpiPrinterAccount extends plugin /* Show dialog to select a new contact person * Select a contact person */ - if(isset($_POST['SelectContactPerson'])){ + if(isset($_POST['SelectContactPerson']) && chkacl($this->acl,"user_tech_num") == ""){ $this->addUser = "contact"; $this->cur_dialog= new glpiSelectUser($this->config,$this->dn,"user_tech_num"); } /* Selecte technical responsible person */ - if(isset($_POST['SelectTechPerson'])){ + if(isset($_POST['SelectTechPerson']) && chkacl($this->acl,"user_tech_num") == ""){ $this->addUser ="tech"; $this->cur_dialog= new glpiSelectUser($this->config,$this->dn,"user_tech_num"); } @@ -367,7 +371,7 @@ class glpiPrinterAccount extends plugin } /* Technical responsible/contact person selected */ - if(isset($_GET['act'])&&($_GET['act']=="user_tech_num")){ + if(isset($_GET['act'])&&($_GET['act']=="user_tech_num") && chkacl($this->acl,"user_tech_num") == ""){ /* Get posted id */ $id = base64_decode($_GET['id']); @@ -418,7 +422,7 @@ class glpiPrinterAccount extends plugin /* Attachment pool was closed with use */ - if(isset($_POST['UseAttachment'])){ + if(isset($_POST['UseAttachment']) && chkacl($this->acl,"useAttachments") == ""){ if(count($this->cur_dialog->check())){ foreach($this->cur_dialog->check() as $msg){ print_red($msg); @@ -440,7 +444,7 @@ class glpiPrinterAccount extends plugin /* Open Attachment pool to add/edit Attachments */ - if(isset($_POST['AddAttachment'])){ + if(isset($_POST['AddAttachment']) && chkacl($this->acl,"useAttachments") == ""){ $this->cur_dialog = new glpiAttachmentPool($this->config,$this->dn,$this->usedAttachments); $this->dialog = true; } @@ -449,7 +453,7 @@ class glpiPrinterAccount extends plugin */ $once = true; foreach($_POST as $name => $value){ - if((preg_match("/^delAttachment_/",$name))&&($once)){ + if((preg_match("/^delAttachment_/",$name))&&($once) && chkacl($this->acl,"useAttachments") == ""){ $once= false; $name = preg_replace("/^delAttachment_/","",$name); $entry = preg_replace("/_.*$/","",$name); @@ -458,7 +462,7 @@ class glpiPrinterAccount extends plugin } } } - if((isset($_POST['RemoveAttachment']))&&(isset($_POST['Attachments']))){ + if((isset($_POST['RemoveAttachment']))&&(isset($_POST['Attachments'])) && chkacl($this->acl,"useAttachments") == ""){ if(isset($this->usedAttachments[$_POST['Attachments']])){ unset($this->usedAttachments[$_POST['Attachments']]); } @@ -490,7 +494,7 @@ class glpiPrinterAccount extends plugin /* Remove cartridge */ - if((isset($_POST['RemoveCartridge']))&&(isset($_POST['Cartridges']))){ + if((isset($_POST['RemoveCartridge']))&&(isset($_POST['Cartridges'])) && chkacl($this->acl,"cartridges") == ""){ foreach($_POST['Cartridges'] as $cartID){ @@ -506,7 +510,7 @@ class glpiPrinterAccount extends plugin /* Open Attachment pool to add/edit Attachments */ - if(isset($_POST['AddCartridge'])){ + if(isset($_POST['AddCartridge']) && chkacl($this->acl,"cartridges") == ""){ $this->cur_dialog = new glpiPrinterCartridges($this->config,$this->dn,$this->type); $this->dialog = true; } @@ -657,17 +661,14 @@ class glpiPrinterAccount extends plugin { if(isset($_POST['glpiPrinterFlagsPosted'])){ plugin::save_object(); - foreach($this->attributes as $attrs){ - if(isset($_POST[$attrs])){ - $this->$attrs = $_POST[$attrs]; - } - } foreach(array("flags_serial","flags_par","flags_usb") as $checkboxes){ - if(isset($_POST[$checkboxes])){ - $this->$checkboxes = 1; - }else{ - $this->$checkboxes = 0; + if(chkacl($this->acl,$checkboxes) == ""){ + if(isset($_POST[$checkboxes])){ + $this->$checkboxes = 1; + }else{ + $this->$checkboxes = 0; + } } } }