Code

Updated listing table summary
[gosa.git] / gosa-plugins / opsi / admin / opsiLicenses / class_licenseByProduct.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 licenseByProduct 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     // Is this a new object? 
39     $this->is_account=TRUE;
40     if($this->dn == "new"){
41       $this->initially_was_account = FALSE;
42     }else{
43       $this->initially_was_account = TRUE;
44       
45       // Extract pool name out of the fake dn.
46       $this->cn = $this->orig_cn = preg_replace("/^opsi:cn=([^,]*),.*$/","\\1",$dn);
47     }
49     $this->init();
50   }
52   
53   function init()
54   {
55     $this->licenseUses = array();
56     if(!$this->initially_was_account){
57       $this->init_successfull = TRUE;
58     }else{
60       // Get license information for the current product.
61       $res = $this->si->getLicensesForProduct($this->cn);
62       if($this->si->is_error()){
63         $this->init_successfull = FALSE;
64         msg_dialog::display(_("Error"),msgPool::siError($this->si->get_error()),ERROR_DIALOG);
65         return;
66       }
68       $this->licenseUses = $res;
69       $this->init_successfull = TRUE;
70     }
71   }
74   function execute()
75   {
76     plugin::execute();
77     // Handle initialization failures.
78     if(isset($_POST['retry_init'])) $this->init();
79     if(!$this->init_successfull){
80       $smarty = get_smarty();
81       $smarty->assign("init_successfull", $this->init_successfull);
82       return($smarty->fetch(get_template_path('licenseByProduct.tpl',TRUE,dirname(__FILE__))));
83     }
84     
85     // Create usage list
86     $list = new divSelectBox("licenseUsage");
87   
88     $ui = get_userinfo();
89     $readable = $ui->get_permissions($this->config->current['BASE'], "opsi/licenseByProduct","");
90     if($readable) {
91       foreach($this->licenseUses as $license){
92         $f1 = array("string" => $license['HOSTID'][0]['VALUE']);
93         $f2 = array("string" => $license['SOFTWARELICENSEID'][0]['VALUE']);
94         $f3 = array("string" => $license['LICENSEPOOLID'][0]['VALUE'],
95             "attach" => "style='border-right:0px;'");
96         $list->addEntry(array($f1,$f2,$f3));
97       } 
98     } 
100     $smarty = get_smarty();
102     // Assign ACls 
103     $plInfo = $this->plInfo();
104     $smarty->assign("licenseUses", $list->DrawList());
105     $smarty->assign("init_successfull", $this->init_successfull);
106     $smarty->assign("initially_was_account", $this->initially_was_account);
107     return($smarty->fetch(get_template_path('licenseByProduct.tpl',TRUE,dirname(__FILE__))));
108   }
110  
111   /* Save HTML inputs
112    */
113   function save_object()
114   {
115     if(isset($_POST['opsiLicenseUsagePosted'])){
116       plugin::save_object();  
117     }
118   }  
121   /* Check user input and return a list of 'invalid input' messages.
122    */
123   function check()
124   {
125     $message = plugin::check();
126     return($message);
127   }
128   
130   function save( ){}
131   function remove_from_parent(){ }
133  
134   static function plInfo()
135   {
136     return (array(
137           "plShortName"   => _("Usage by product"),
138           "plDescription" => _("License usage by product"),
139           "plSelfModify"  => FALSE,
140           "plDepends"     => array(),
141           "plPriority"    => 12,
142           "plSection"     => array("administration"),
143           "plCategory"    => array("opsi"),
144           "plProvidedAcls"=> array()));
145   }
149 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
150 ?>