* [DEV] Minor improvements

This commit is contained in:
nuxsmin
2016-11-30 22:23:00 +01:00
committed by Rubén Domínguez
parent db6f58e642
commit cd3dd55446
11 changed files with 76 additions and 24 deletions

View File

@@ -78,6 +78,10 @@ class ProfileData extends ProfileBaseData
* @var bool
*/
protected $accPublicLinks = false;
/**
* @var bool
*/
protected $accGlobalSearch = false;
/**
* @var bool
*/
@@ -594,4 +598,20 @@ class ProfileData extends ProfileBaseData
{
$this->mgmFiles = $mgmFiles;
}
/**
* @return boolean
*/
public function isAccGlobalSearch()
{
return $this->accGlobalSearch;
}
/**
* @param boolean $accGlobalSearch
*/
public function setAccGlobalSearch($accGlobalSearch)
{
$this->accGlobalSearch = $accGlobalSearch;
}
}