コード例 #1
0
ファイル: guides.php プロジェクト: TheProjecter/skeleton
 function __construct($locator)
 {
     parent::__construct($locator);
     $this->response->set('subcontent', 'This is the subcontent value. I set it in the action controller constructor. So, by default you would see this on all "pages" under this area. Maybe I should use this or something like it to modify the sub-navigation above. ');
 }
コード例 #2
0
ファイル: posts.php プロジェクト: TheProjecter/skeleton
 function __construct($locator)
 {
     parent::__construct($locator);
 }
コード例 #3
0
ファイル: admin.php プロジェクト: TheProjecter/skeleton
 function __construct($locator)
 {
     parent::__construct($locator);
     $this->usersession = $locator->get('UserSession');
     $this->userdata = $this->usersession->get();
 }
コード例 #4
0
ファイル: connect.php プロジェクト: TheProjecter/skeleton
 public function __construct($locator = null)
 {
     parent::__construct($locator);
 }
コード例 #5
0
ファイル: about.php プロジェクト: TheProjecter/skeleton
    function __construct($locator)
    {
        parent::__construct($locator);
        $this->response->set('subcontent', '<li><a href="about/">About Us</a></li><li>
		<a href="about/agents/">Our Agents</a></li> ');
    }