Code

replaced <p> seperator style by <hr >
[gosa.git] / gosa-plugins / opsi / admin / opsiLicenses / class_licenseUsage.inc
1 <?php
2 /*
3 * This code is part of GOsa (http://www.gosa-project.org)
4 * Copyright (C) 2003-2008 GONICUS GmbH
5 *
6 * ID: $$Id: class_opsiLicenses.inc 13520 2009-03-09 14:54:13Z hickert $$
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
21 */
24 class licenseUsage extends plugin 
25 {
27   var $cn = "";
28   var $licenseUses = array();
29   var $init_successfull = FALSE;
32   function __construct(&$config,$dn)
33   {
34     $this->config = $config;
35     $this->dn = $this->orig_dn = $dn;
36     $this->si = new opsiLicenceHandler($this->config);
38     $this->is_account=TRUE;
39     if($this->dn == "new"){
40       $this->initially_was_account = FALSE;
41     }else{
42       $this->initially_was_account = TRUE;
43       $this->cn = $this->orig_cn = preg_replace("/^opsi:cn=([^,]*),.*$/","\\1",$dn);
44     }
46     // Extract pool name out of the fake dn.
47     $this->init();
48   }
50   
51   function init()
52   {
53     $this->licenseUses = array();
54     if(!$this->initially_was_account){
55       $this->init_successfull = TRUE;
56     }else{
58       $res = $this->si->getLicenseUsage("", $this->cn);
59       if($this->si->is_error()){
60         $this->init_successfull = FALSE;
61         msg_dialog::display(_("Error"),msgPool::siError($this->si->get_error()),ERROR_DIALOG);
62         return;
63       }
65       $this->licenseUses = $res;
66       $this->init_successfull = TRUE;
67     }
68   }
71   function execute()
72   {
73     // Handle initialization failures.
74     if(isset($_POST['retry_init'])) $this->init();
75     if(!$this->init_successfull){
76       $smarty = get_smarty();
77       $smarty->assign("init_successfull", $this->init_successfull);
78       return($smarty->fetch(get_template_path('licenseGeneric.tpl',TRUE,dirname(__FILE__))));
79     }
80     
81     // Create usage list
82     $list = new divSelectBox("licenseUsage");
83     $ui = get_userinfo();
84     $readable = $ui->get_permissions($this->config->current['BASE'], "opsi/licenseUsage","");
85     if($readable) {
86       foreach($this->licenseUses as $license){
87         $f1 = array("string" => $license['hostId'][0]);
88         $f2 = array("string" => $license['licenseKey'][0]);
89         $f3 = array("string" => $license['licensePoolId'][0]);
90         $f4 = array("string" => $license['softwareLicenseId'][0],
91             "attach" => "style='border-right:0px;'");
92         $list->addEntry(array($f1,$f2,$f3,$f4));
93       } 
94     } 
96     $smarty = get_smarty();
98     // Assign ACls 
99     $plInfo = $this->plInfo();
100     foreach($plInfo['plProvidedAcls'] as $name => $desc){
101       $smarty->assign("{$name}ACL",$this->getacl($name));
102     }
103     foreach($this->attributes as $attr){
104       $smarty->assign($attr,$this->$attr);
105     }
107     $smarty->assign("licenseUses", $list->DrawList());
108     $smarty->assign("init_successfull", $this->init_successfull);
109     $smarty->assign("initially_was_account", $this->initially_was_account);
110     return($smarty->fetch(get_template_path('licenseUsage.tpl',TRUE,dirname(__FILE__))));
111   }
113  
114   /* Save HTML inputs
115    */
116   function save_object()
117   {
118     if(isset($_POST['opsiLicenseUsagePosted'])){
119       plugin::save_object();  
120     }
121   }  
124   /* Check user input and return a list of 'invalid input' messages.
125    */
126   function check()
127   {
128     $message = plugin::check();
129     return($message);
130   }
131   
133   /* Saves object modifications
134    */  
135   function save() { }
136   function remove_from_parent(){ return; }
138  
139   static function plInfo()
140   {
141     return (array(
142           "plShortName"   => _("License usage"),
143           "plDescription" => _("License usage"),
144           "plSelfModify"  => FALSE,
145           "plDepends"     => array(),
146           "plPriority"    => 11,
147           "plSection"     => array("administration"),
148           "plCategory"    => array("opsi"),
149           "plProvidedAcls"=> array()));
150   }
154 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
155 ?>