예제 #1
0
파일: Child.php 프로젝트: ariol/adminshop
 public function __construct(array $column = array())
 {
     parent::__construct($column);
     $this->_field = Arr::get($column, 'field');
     $this->_model = Arr::get($column, 'model');
     $this->_external_url = Arr::get($column, 'external_url');
 }
예제 #2
0
파일: Link.php 프로젝트: ariol/adminshop
 public function __construct(array $column = array())
 {
     parent::__construct($column);
     $this->_route_str = Arr::get($column, 'route_str');
     $this->_color = Arr::get($column, 'color');
     $this->_title = Arr::get($column, 'title');
     $this->_confirm = Arr::get($column, 'confirm');
     $this->_alternative = Arr::get($column, 'alternative');
 }
예제 #3
0
파일: Name.php 프로젝트: ariol/adminshop
 public function __construct(array $column = array())
 {
     parent::__construct($column);
     $this->_route_str = Arr::get($column, 'route_str');
     $this->_external_url = Arr::get($column, 'external_url');
 }