コード例 #1
0
ファイル: Checkbox.php プロジェクト: control-corp/brands
 public function __construct($name, array $options = [])
 {
     parent::__construct($name, $options);
     if ($this->checkAll) {
         $this->setTitle('<input class="checkbox" data-handler="grid.checkall" type="checkbox" data-rel="' . $this->getName() . '[]" value="1" /> ' . $this->getTitle());
     }
 }
コード例 #2
0
ファイル: Href.php プロジェクト: control-corp/brands
 public function __construct($name, array $options = [])
 {
     parent::__construct($name, $options);
     $this->router = app('router');
 }