]> git.sur5r.net Git - bacula/bacula/blob - gui/baculum/protected/Web/Portlets/ResourceListTemplate.php
baculum: New Baculum API and Baculum Web
[bacula/bacula] / gui / baculum / protected / Web / Portlets / ResourceListTemplate.php
1 <?php
2 /*
3  * Bacula(R) - The Network Backup Solution
4  * Baculum   - Bacula web interface
5  *
6  * Copyright (C) 2013-2016 Kern Sibbald
7  *
8  * The main author of Baculum is Marcin Haba.
9  * The original author of Bacula is Kern Sibbald, with contributions
10  * from many others, a complete list can be found in the file AUTHORS.
11  *
12  * You may use this file and others of this release according to the
13  * license defined in the LICENSE file, which includes the Affero General
14  * Public License, v3.0 ("AGPLv3") and some additional permissions and
15  * terms pursuant to its AGPLv3 Section 7.
16  *
17  * This notice must be preserved when any source code is
18  * conveyed and/or propagated.
19  *
20  * Bacula(R) is a registered trademark of Kern Sibbald.
21  */
22
23 Prado::using('System.Web.UI.ActiveControls.TActiveControlAdapter');
24 Prado::using('Application.Web.Portlets.ConfigListTemplate');
25
26 class ResourceListTemplate extends ConfigListTemplate implements IActiveControl, ICallbackEventHandler {
27
28         const HOST = 'Host';
29         const COMPONENT_TYPE = 'ComponentType';
30         const COMPONENT_NAME = 'ComponentName';
31
32         public function __construct() {
33                 parent::__construct();
34                 $this->setAdapter(new TActiveControlAdapter($this));
35                 $this->onResourceListLoad(array($this, 'loadConfig'));
36         }
37
38         public function getActiveControl() {
39                 return $this->getAdapter()->getBaseActiveControl();
40         }
41
42         public function raiseCallbackEvent($param) {
43                 $this->raisePostBackEvent($param);
44                 $this->onCallback($param);
45         }
46
47         public function onResourceListLoad($handler) {
48                 $this->attachEventHandler('OnResourceListLoad', $handler);
49         }
50
51         public function getHost() {
52                 return $this->getViewState(self::HOST);
53         }
54
55         public function setHost($host) {
56                 $this->setViewState(self::HOST, $host);
57         }
58
59         public function getComponentType() {
60                 return $this->getViewState(self::COMPONENT_TYPE);
61         }
62
63         public function setComponentType($type) {
64                 $this->setViewState(self::COMPONENT_TYPE, $type);
65         }
66
67         public function getComponentName() {
68                 return $this->getViewState(self::COMPONENT_NAME);
69         }
70
71         public function setComponentName($name) {
72                 $this->setViewState(self::COMPONENT_NAME, $name);
73         }
74 }
75 ?>