Server IP : 103.233.192.212 / Your IP : 3.144.250.2 Web Server : Apache/2 System : Linux sv1.inde.co.th 3.10.0-1160.36.2.el7.x86_64 #1 SMP Wed Jul 21 11:57:15 UTC 2021 x86_64 User : sumpatuan ( 1058) PHP Version : 5.5.38 Disable Function : symlink,shell_exec,exec,proc_close,proc_open,popen,system,dl,putenv,passthru,escapeshellarg,escapeshellcmd,pcntl_exec,proc_get_status,proc_nice,proc_terminate,pclose,ini_alter,virtual,openlog,ini_restore MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/sumpatuan/public_html/backup/protected/extensions/bootstrap/form/ |
Upload File : |
<?php /** * TbFormButtonElement class file. * @author Christoffer Niska <ChristofferNiska@gmail.com> * @copyright Copyright © Christoffer Niska 2012- * @license http://www.opensource.org/licenses/bsd-license.php New BSD License * @package bootstrap.form * @since 2.0.0 */ /** * Bootstrap form builder button element. */ class TbFormButtonElement extends CFormButtonElement { /** * @var string the button callback types. * @see TbButton::$buttonType */ public $buttonType; /** * @var string the button type. * @see TbButton::$type */ public $type; /** * @var string the button size. * @see TbButton::$size */ public $size; /** * @var string the button icon. * @see TbButton::$icon */ public $icon; /** * @var string the button URL. * @see TbButton::$url */ public $url; /** * @var boolean indicates whether the button should span the full width of the a parent. */ public $block = false; /** * @var boolean indicates whether the button is active. */ public $active = false; /** * @var boolean indicates whether the button is disabled. */ public $disabled = false; /** * @var boolean indicates whether to encode the label. */ public $encodeLabel = true; /** * @var boolean indicates whether to enable toggle. */ public $toggle; /** * @var string the text to display while loading. */ public $loadingText; /** * @var string the text to display when loading is complete. */ public $completeText; /** * @var array the dropdown button items. */ public $items = array(); /** * @var array the HTML attributes for the widget container. */ public $htmlOptions = array(); /** * @var array array the button ajax options. * @see TbButton::$ajaxOptions */ public $ajaxOptions = array(); /** * @var array the HTML attributes for the dropdown menu. */ public $dropdownOptions = array(); /** * Returns this button. * @return string the rendering result */ public function render() { ob_start(); $this->getParent()->getOwner()->widget('bootstrap.widgets.TbButton', array( 'buttonType'=>isset($this->buttonType) ? $this->buttonType : null, 'type'=>isset($this->type) ? $this->type : null, 'size'=>isset($this->size) ? $this->size : null, 'icon'=>$this->icon, 'label'=>$this->label, 'url'=>$this->url, 'block'=>$this->block, 'active'=>$this->active, 'disabled'=>$this->disabled, 'encodeLabel'=>$this->encodeLabel, 'toggle'=>$this->toggle, 'loadingText'=>$this->loadingText, 'completeText'=>$this->completeText, 'items'=>$this->items, 'htmlOptions'=>$this->htmlOptions, 'ajaxOptions'=>$this->ajaxOptions, 'dropdownOptions'=>$this->dropdownOptions, )); return ob_get_clean(); } }