Ejemplo n.º 1
0
 /**
  * Constructs a new ini node IO
  * @param \ride\library\system\file\File $path Path for the data files
  * @param \ride\library\config\ConfigHelper $configHelper Instance of the
  * configuration helper
  * @param \ride\library\cms\expired\ExpiredRouteModel $expiredRouteModel
  * Instance of the expired route model
  * @return null
  */
 public function __construct(File $path, ConfigHelper $configHelper, ExpiredRouteModel $expiredRouteModel)
 {
     parent::__construct($path, $expiredRouteModel);
     $this->configHelper = $configHelper;
     $this->archiveName = '_archive';
     $this->trashName = '_trash';
 }
Ejemplo n.º 2
0
 /**
  * Constructs a new ini node IO
  * @param \ride\library\system\file\File $path Path for the data files
  * @param \ride\library\config\ConfigHelper $configHelper Instance of the
  * configuration helper
  * @param \ride\library\cms\expired\ExpiredRouteModel $expiredRouteModel
  * Instance of the expired route model
  * @return null
  */
 public function __construct(File $path, JsonParser $jsonParser, ExpiredRouteModel $expiredRouteModel)
 {
     parent::__construct($path, $expiredRouteModel);
     $this->jsonParser = $jsonParser;
 }