Source for file Switcher.class.php
Documentation is available at Switcher.class.php
* Содержит класс Switcher
* @copyright Energine 2006
//require_once('core/modules/share/components/Button.class.php');
* Состояние переключателя
public function __construct($id, $action = false, $image = false, $title = false, $tooltip = false) {
parent::__construct($id, $action, $image, $title, $tooltip);
$this->type = 'switcher';
* Возвращает состояние переключателя
* Устанавливает состояние переключателя
$this->state = (bool) $state;
|