コード例 #1
0
 /**
  * Default inherited constructor for the statusController class
  *
  * @param StatusModel $model
  *            Data model of the Status page
  * @param StatusView $view
  *            View representation of the Status page
  */
 public function __construct(StatusModel $model, StatusView $view)
 {
     parent::__construct($model, $view);
 }
コード例 #2
0
 /**
  * Default inherited constructor for the capturesController class
  *
  * @param CapturesModel $model
  *            Data model of the Captures page
  * @param CapturesView $view
  *            View representation of the Captures page
  */
 public function __construct(CapturesModel $model, CapturesView $view)
 {
     parent::__construct($model, $view);
 }
コード例 #3
0
 /**
  * Default inherited constructor for the managerController class
  *
  * @param ManagerModel $model
  *            Data model of the Manager page
  * @param ManagerView $view
  *            View representation of the Manager page
  */
 public function __construct(ManagerModel $model, ManagerView $view)
 {
     parent::__construct($model, $view);
 }
コード例 #4
0
 /**
  * Default inherited constructor for the settingsController class
  *
  * @param SettingsModel $model
  *            Data model of the Settings page
  * @param SettingsView $view
  *            View representation of the Settings page
  */
 public function __construct(SettingsModel $model, SettingsView $view)
 {
     parent::__construct($model, $view);
 }
コード例 #5
0
 /**
  * Default inherited constructor for the storageController class
  *
  * @param StorageModel $model
  *            Data model of the Storage page
  * @param StorageView $view
  *            View representation of the Storage page
  */
 public function __construct(StorageModel $model, StorageView $view)
 {
     parent::__construct($model, $view);
 }