コード例 #1
0
ファイル: ContentView.php プロジェクト: youshido/cms
 public function __construct()
 {
     parent::__construct();
     $this->setAttributes([new TextAttribute(["name" => "template"])]);
 }
コード例 #2
0
ファイル: Page.php プロジェクト: youshido/cms
 public function __construct()
 {
     parent::__construct();
     $this->setPosition(0);
     $this->setAttributes([new TextAttribute(["name" => "title"]), new TextAttribute(["name" => "alias"]), new TextAttribute(["name" => "template"]), new TextareaAttribute(["name" => "description"]), new ImageAttribute(["name" => "background"])]);
 }