コード例 #1
0
ファイル: gallery.ctrl.php プロジェクト: gpuenteallott/rox
 public function __construct()
 {
     parent::__construct();
     $this->_model = new GalleryModel();
     $this->_view = new GalleryView($this->_model);
     $this->loggedInMember = $this->_model->getLoggedInMember();
     $this->username = $this->loggedInMember ? $this->loggedInMember->Username : false;
 }
コード例 #2
0
ファイル: login.ctrl.php プロジェクト: gpuenteallott/rox
 public function __construct()
 {
     parent::__construct();
     $this->model = new LoginModel();
 }
コード例 #3
0
ファイル: polls.ctrl.php プロジェクト: gpuenteallott/rox
 public function __construct()
 {
     parent::__construct();
 }
コード例 #4
0
 /**
  * Constructor.
  */
 public function __construct()
 {
     parent::__construct();
     $this->_model = new suggestionsModel();
 }
コード例 #5
0
ファイル: activities.ctrl.php プロジェクト: gpuenteallott/rox
 /**
  * Constructor.
  */
 public function __construct()
 {
     parent::__construct();
     $this->_model = new ActivitiesModel();
     $this->_view = new ActivitiesView($this->_model);
 }
コード例 #6
0
 public function __construct()
 {
     parent::__construct();
     $this->_model = new RelatedGroupsModel();
 }
コード例 #7
0
ファイル: rox.ctrl.php プロジェクト: gpuenteallott/rox
 /**
  * @see /build/mytravelbook/mytravelbook.ctrl.php
  *
  */
 public function __construct()
 {
     parent::__construct();
     $this->_model = new Rox();
     $this->_view = new RoxView($this->_model);
 }
コード例 #8
0
ファイル: link.ctrl.php プロジェクト: gpuenteallott/rox
 public function __construct()
 {
     parent::__construct();
     $this->_model = new LinkModel();
     //   $this->_view  = new LinkView($this->_model);
 }
コード例 #9
0
 public function __construct()
 {
     parent::__construct();
     $this->_model = new LastcommentsModel();
 }
コード例 #10
0
ファイル: places.ctrl.php プロジェクト: gpuenteallott/rox
 public function __construct()
 {
     parent::__construct();
     $this->_model = new Places();
 }
コード例 #11
0
ファイル: search.ctrl.php プロジェクト: gpuenteallott/rox
 /**
  * Constructor.
  */
 public function __construct()
 {
     parent::__construct();
     $this->model = new SearchModel();
 }
コード例 #12
0
ファイル: members.ctrl.php プロジェクト: gpuenteallott/rox
 public function __construct()
 {
     parent::__construct();
     $this->model = new MembersModel();
 }
コード例 #13
0
ファイル: api.ctrl.php プロジェクト: gpuenteallott/rox
 /**
  * Constructor.
  */
 public function __construct()
 {
     parent::__construct();
     $this->_model = new ApiModel();
     $this->_view = new ApiView($this->_model);
 }
コード例 #14
0
ファイル: invite.ctrl.php プロジェクト: gpuenteallott/rox
 public function __construct()
 {
     parent::__construct();
     $this->model = new InviteModel();
 }
コード例 #15
0
ファイル: notify.ctrl.php プロジェクト: gpuenteallott/rox
 public function __construct()
 {
     parent::__construct();
     $this->_model = new NotifyModel();
 }
コード例 #16
0
ファイル: rights.ctrl.php プロジェクト: gpuenteallott/rox
 public function __construct()
 {
     parent::__construct();
     $this->_model = new RightsModel();
 }