Add validation in class serverConfiguration
This commit is contained in:
@@ -55,10 +55,13 @@ class serverConf {
|
|||||||
private $lanLanguage;
|
private $lanLanguage;
|
||||||
public $workspaces = array();
|
public $workspaces = array();
|
||||||
public $rtlLang = array('ar','iw','fa');
|
public $rtlLang = array('ar','iw','fa');
|
||||||
|
public $filePath = '';
|
||||||
|
|
||||||
|
|
||||||
public function __construct() {
|
public function __construct() {
|
||||||
$this->filePath = PATH_DATA . 'srvConf.singleton';
|
if (defined('PATH_DATA')) {
|
||||||
|
$this->filePath = PATH_DATA . 'srvConf.singleton';
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -107,8 +110,10 @@ class serverConf {
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
function saveSingleton() {
|
function saveSingleton() {
|
||||||
$this->filePath = PATH_DATA . 'srvConf.singleton';
|
if (defined('PATH_DATA')) {
|
||||||
$size = file_put_contents ( $this->filePath, $this->serializeInstance () );
|
$this->filePath = PATH_DATA . 'srvConf.singleton';
|
||||||
|
$size = file_put_contents ( $this->filePath, $this->serializeInstance () );
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
Reference in New Issue
Block a user