/**
  * Constructor for the capturesView class.
  * Sets the page title
  *
  * @param CapturesModel $model
  *            Data model of the Captures page
  */
 public function __construct(CapturesModel $model)
 {
     parent::__construct($model);
     $this->title = _('Captures');
 }
 /**
  * Constructor for the storageView class.
  * Sets the page title
  *
  * @param StorageModel $model
  *            Data model of the Storage page
  */
 public function __construct(StorageModel $model)
 {
     parent::__construct($model);
     $this->title = _('Storage');
 }
 /**
  * Constructor for the settingsView class.
  * Sets the page title
  *
  * @param SettingsModel $model
  *            Data model of the Settings page
  */
 public function __construct(SettingsModel $model)
 {
     parent::__construct($model);
     $this->title = _('Settings');
 }
 /**
  * Constructor for the managerView class.
  * Sets the page title
  *
  * @param ManagerModel $model
  *            Data model of the Manager page
  */
 public function __construct(ManagerModel $model)
 {
     parent::__construct($model);
     $this->title = _('Manager');
 }