Server IP : 103.233.192.212 / Your IP : 3.145.200.8 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/widgets/ |
Upload File : |
<?php /** * TbMenu 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.widgets */ Yii::import('bootstrap.widgets.TbBaseMenu'); /** * Bootstrap menu. * @see http://twitter.github.com/bootstrap/components.html#navs */ class TbMenu extends TbBaseMenu { // Menu types. const TYPE_TABS = 'tabs'; const TYPE_PILLS = 'pills'; const TYPE_LIST = 'list'; /** * @var string the menu type. * Valid values are 'tabs' and 'pills'. */ public $type; /** * @var string|array the scrollspy target or configuration. */ public $scrollspy; /** * @var boolean indicates whether the menu should appear vertically stacked. */ public $stacked = false; /** * @var boolean indicates whether dropdowns should be dropups instead. */ public $dropup = false; /** * Initializes the widget. */ public function init() { parent::init(); $classes = array('nav'); $validTypes = array(self::TYPE_TABS, self::TYPE_PILLS, self::TYPE_LIST); if (isset($this->type) && in_array($this->type, $validTypes)) $classes[] = 'nav-'.$this->type; if ($this->stacked && $this->type !== self::TYPE_LIST) $classes[] = 'nav-stacked'; if ($this->dropup === true) $classes[] = 'dropup'; if (isset($this->scrollspy)) { $scrollspy = is_string($this->scrollspy) ? array('target'=>$this->scrollspy) : $this->scrollspy; $this->widget('bootstrap.widgets.TbScrollSpy', $scrollspy); } if (!empty($classes)) { $classes = implode(' ', $classes); if (isset($this->htmlOptions['class'])) $this->htmlOptions['class'] .= ' '.$classes; else $this->htmlOptions['class'] = $classes; } } /** * Returns the divider css class. * @return string the class name */ public function getDividerCssClass() { return (isset($this->type) && $this->type === self::TYPE_LIST) ? 'divider' : 'divider-vertical'; } /** * Returns the dropdown css class. * @return string the class name */ public function getDropdownCssClass() { return 'dropdown'; } /** * Returns whether this is a vertical menu. * @return boolean the result */ public function isVertical() { return isset($this->type) && $this->type === self::TYPE_LIST; } }