Exemple #1
0
 /**
  *
  */
 function __construct()
 {
     parent::__construct('control-column', '');
     $admin = Admin::instance();
     $this->router = $admin->router;
     $this->formBuilder = $admin->formBuilder;
 }
Exemple #2
0
 function __construct($name, $label = null)
 {
     if (is_null($label)) {
         $label = '';
     }
     parent::__construct($name, $label);
 }
Exemple #3
0
 /**
  *
  */
 function __construct($name, $label = null)
 {
     parent::__construct($name, $label);
     $this->sortable = false;
     $admin = Admin::instance();
     $this->router = $admin->router;
     $this->formBuilder = $admin->formBuilder;
 }
Exemple #4
0
 /**
  * @param string $name
  * @param string $label
  */
 function __construct($name, $label = null)
 {
     $this->hidden = true;
     $this->router = Admin::instance()->router;
     parent::__construct($name, $label);
     $this->model($this->modelItem->getModelClass());
     $this->value('id');
 }
Exemple #5
0
 /**
  *
  */
 function __construct()
 {
     parent::__construct();
     $this->orderable(false);
 }
Exemple #6
0
 /**
  *
  */
 function __construct()
 {
     parent::__construct();
     $this->label('<input type="checkbox" class="adminCheckboxAll"/>');
     $this->orderable(false);
 }
Exemple #7
0
 /**
  * @param $name
  */
 function __construct($name)
 {
     parent::__construct();
     $this->name($name);
 }
Exemple #8
0
 /**
  * @param string $name
  * @param string $label
  */
 function __construct($name, $label = null)
 {
     $this->hidden = true;
     parent::__construct($name, $label);
 }