Esempio n. 1
0
 /**
  * MonitorModelClassification constructor.
  *
  * @param   JApplicationCms  $application  The Application object to use in this model.
  * @param   boolean          $loadFilters  If set to true, filters and list options will be loaded from the page request.
  *
  * @throws Exception
  */
 public function __construct($application = null, $loadFilters = true)
 {
     $this->prefix = 'classification';
     parent::__construct($application, $loadFilters);
 }
Esempio n. 2
0
 /**
  * MonitorModelAttachments constructor.
  *
  * @param   JApplicationCms  $application  The Application object to use in this model.
  * @param   boolean          $loadFilters  If set to true, filters and list options will be loaded from the page request.
  * @param   string           $pathPrefix   Base path for file storage for this component.
  *                                         Defaults to /media/com_monitor.
  */
 public function __construct($application = null, $loadFilters = true, $pathPrefix = '/media/com_monitor/')
 {
     $this->pathPrefix = JPATH_ROOT . $pathPrefix;
     parent::__construct();
 }