Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/zabbix/zabbix.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'frontends/php/include/classes/html/CFormList.php')
-rw-r--r--frontends/php/include/classes/html/CFormList.php90
1 files changed, 90 insertions, 0 deletions
diff --git a/frontends/php/include/classes/html/CFormList.php b/frontends/php/include/classes/html/CFormList.php
new file mode 100644
index 00000000000..89987a683da
--- /dev/null
+++ b/frontends/php/include/classes/html/CFormList.php
@@ -0,0 +1,90 @@
+<?php
+/*
+** Zabbix
+** Copyright (C) 2001-2014 Zabbix SIA
+**
+** This program is free software; you can redistribute it and/or modify
+** it under the terms of the GNU General Public License as published by
+** the Free Software Foundation; either version 2 of the License, or
+** (at your option) any later version.
+**
+** This program is distributed in the hope that it will be useful,
+** but WITHOUT ANY WARRANTY; without even the implied warranty of
+** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+** GNU General Public License for more details.
+**
+** You should have received a copy of the GNU General Public License
+** along with this program; if not, write to the Free Software
+** Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+**/
+
+
+class CFormList extends CDiv {
+
+ protected $formList = null;
+ protected $editable = true;
+ protected $formInputs = array('ctextbox', 'cnumericbox', 'ctextarea', 'ccombobox', 'ccheckbox', 'cpassbox', 'cipbox');
+
+ public function __construct($id = null, $class = null, $editable = true) {
+ $this->editable = $editable;
+ $this->formList = new CList(null, 'formlist');
+
+ parent::__construct();
+
+ if ($id) {
+ $this->attr('id', zbx_formatDomId($id));
+ }
+
+ $this->attr('class', $class);
+ }
+
+ public function addRow($term, $description = null, $hidden = false, $id = null, $class = null) {
+ $label = $term;
+
+ if (is_object($description)) {
+ $inputClass = strtolower(get_class($description));
+
+ if (in_array($inputClass, $this->formInputs)) {
+ $label = new CLabel($term, $description->getAttribute('id'));
+ }
+ }
+
+ $defaultClass = $hidden ? 'formrow hidden' : 'formrow';
+
+ if ($class === null) {
+ $class = $defaultClass;
+ }
+ else {
+ $class .= ' '.$defaultClass;
+ }
+
+ if ($description === null) {
+ $this->formList->addItem(array(new CDiv(SPACE, 'dt right'), new CDiv($label, 'dd')), $class, $id);
+ }
+ else {
+ $this->formList->addItem(array(new CDiv($label, 'dt right'), new CDiv($description, 'dd')), $class, $id);
+ }
+ }
+
+ public function addInfo($text, $label = null) {
+ $this->formList->addItem(
+ array(
+ new CDiv($label ? $label : _('Info'), 'dt right listInfoLabel'),
+ new CDiv($text, 'objectgroup inlineblock border_dotted ui-corner-all listInfoText')
+ ),
+ 'formrow listInfo'
+ );
+ }
+
+ public function toString($destroy = true) {
+ $this->addItem($this->formList);
+
+ return parent::toString($destroy);
+ }
+
+ public function addVar($name, $value, $id = null) {
+ if ($value !== null) {
+ return $this->addItem(new CVar($name, $value, $id));
+ }
+ }
+}