示例#1
0
文件: Item.php 项目: mesour/dropdown
 public function __construct($name = null, Mesour\Components\ComponentModel\IContainer $parent = null)
 {
     $this->defaults[self::WRAPPER]['attributes']['class'] = false;
     $this->defaults[self::WRAPPER]['attributes']['role'] = 'menuitem';
     $this->defaults[self::WRAPPER]['attributes']['tabindex'] = '-1';
     parent::__construct($name, $parent);
 }
示例#2
0
 public function __construct($name = null, Mesour\Components\ComponentModel\IContainer $parent = null)
 {
     $this->defaults[self::WRAPPER]['el'] = 'button';
     $this->defaults[self::WRAPPER]['attributes']['data-dismiss'] = 'modal';
     $this->setText('Close');
     parent::__construct($name, $parent);
 }
示例#3
0
 public function __construct($name = null, Mesour\Components\ComponentModel\IContainer $parent = null)
 {
     $this->defaults[self::WRAPPER]['el'] = 'button';
     $this->defaults[self::WRAPPER]['attributes']['data-toggle'] = 'dropdown';
     parent::__construct($name, $parent);
 }