コード例 #1
0
ファイル: Field.php プロジェクト: parabol/laravel-cms
 public function __construct($name, $label, &$model = null)
 {
     parent::__construct();
     $this->model = $model;
     $this->name($name);
     $this->label = $label;
 }
コード例 #2
0
ファイル: Field.php プロジェクト: phunghv/firstbluz
 public function __construct($name, $label, &$model = null, &$model_relations = null)
 {
     parent::__construct();
     $this->attributes = Config::get('rapyd.field.attributes');
     $this->model = $model;
     $this->model_relations = $model_relations;
     $this->setName($name);
     $this->label = $label;
 }
コード例 #3
0
ファイル: Field.php プロジェクト: msabev/rapyd-laravel
 public function __construct($name, $label, &$model = null, &$model_relations = null)
 {
     parent::__construct();
     $this->attributes = config('rapyd.fields.attributes', ['class' => 'form-control']);
     $this->model = $model;
     $this->model_relations = $model_relations;
     $this->setName($name);
     $this->label = $label;
 }
コード例 #4
0
ファイル: DataForm.php プロジェクト: JoanVt/rapyd-laravel
 public function __construct()
 {
     parent::__construct();
     $this->process_url = $this->url->append('process', 1)->get();
     $this->model_relations = new \ArrayObject();
 }
コード例 #5
0
ファイル: DataForm.php プロジェクト: parabol/laravel-cms
 public function __construct()
 {
     parent::__construct();
     $this->process_url = $this->url->append('process', 1)->get();
 }