]> git.sur5r.net Git - bacula/bacula/blob - gui/baculum/protected/Web/Portlets/DirectiveListTemplate.php
baculum: Fix redundant loading users portlet
[bacula/bacula] / gui / baculum / protected / Web / Portlets / DirectiveListTemplate.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 DirectiveListTemplate extends ConfigListTemplate implements IActiveControl, ICallbackEventHandler {
27
28         const HOST = 'Host';
29         const COMPONENT_TYPE = 'ComponentType';
30         const COMPONENT_NAME = 'ComponentName';
31         const RESOURCE_TYPE = 'ResourceType';
32         const RESOURCE_NAME = 'ResourceName';
33         const RESOURCE_NAMES = 'ResourceNames';
34         const RESOURCE = 'Resource';
35         const DIRECTIVE_NAME = 'DirectiveName';
36         const DATA = 'Data';
37         const LOAD_VALUES = 'LoadValues';
38
39         public function __construct() {
40                 parent::__construct();
41                 $this->setAdapter(new TActiveControlAdapter($this));
42                 $this->onDirectiveListLoad(array($this, 'loadConfig'));
43         }
44
45         public function getActiveControl() {
46                 return $this->getAdapter()->getBaseActiveControl();
47         }
48
49         public function raiseCallbackEvent($param) {
50                 $this->raisePostBackEvent($param);
51                 $this->onCallback($param);
52         }
53
54         public function onDirectiveListLoad($handler) {
55                 $this->attachEventHandler('OnDirectiveListLoad', $handler);
56         }
57
58         public function getHost() {
59                 return $this->getViewState(self::HOST);
60         }
61
62         public function setHost($host) {
63                 $this->setViewState(self::HOST, $host);
64         }
65
66         public function getComponentType() {
67                 return $this->getViewState(self::COMPONENT_TYPE);
68         }
69
70         public function setComponentType($type) {
71                 $this->setViewState(self::COMPONENT_TYPE, $type);
72         }
73
74         public function getComponentName() {
75                 return $this->getViewState(self::COMPONENT_NAME);
76         }
77
78         public function setComponentName($name) {
79                 $this->setViewState(self::COMPONENT_NAME, $name);
80         }
81
82         public function getResourceType() {
83                 return $this->getViewState(self::RESOURCE_TYPE);
84         }
85
86         public function setResourceType($type) {
87                 $this->setViewState(self::RESOURCE_TYPE, $type);
88         }
89
90         public function getResourceName() {
91                 return $this->getViewState(self::RESOURCE_NAME);
92         }
93
94         public function setResourceName($name) {
95                 $this->setViewState(self::RESOURCE_NAME, $name);
96         }
97
98         public function getResourceNames() {
99                 return $this->getViewState(self::RESOURCE_NAMES);
100         }
101
102         public function setResourceNames($resource_names) {
103                 $this->setViewState(self::RESOURCE_NAMES, $resource_names);
104         }
105
106         public function getResource() {
107                 return $this->getViewState(self::RESOURCE);
108         }
109
110         public function setResource($resource) {
111                 $this->setViewState(self::RESOURCE, $resource);
112         }
113
114         public function getDirectiveName() {
115                 return $this->getViewState(self::DIRECTIVE_NAME);
116         }
117
118         public function setDirectiveName($name) {
119                 $this->setViewState(self::DIRECTIVE_NAME, $name);
120         }
121
122         public function getData() {
123                 return $this->getViewState(self::DATA);
124         }
125
126         public function setData($data) {
127                 $this->setViewState(self::DATA, $data);
128         }
129
130         public function getLoadValues() {
131                 return $this->getViewState(self::LOAD_VALUES);
132         }
133
134         public function setLoadValues($load_values) {
135                 settype($load_values, 'bool');
136                 $this->setViewState(self::LOAD_VALUES, $load_values);
137         }
138 }
139 ?>