* [DEV] Improved account search handling

* [DEV] Fixed some UI issues
This commit is contained in:
nuxsmin
2016-11-02 03:26:21 +01:00
committed by Rubén Domínguez
parent e7adbf7f05
commit 3979d28e2d
45 changed files with 1058 additions and 1010 deletions

View File

@@ -66,6 +66,10 @@ class ProfileData extends ProfileBaseData
* @var bool
*/
protected $accFiles = false;
/**
* @var bool
*/
protected $accPrivate = false;
/**
* @var bool
*/
@@ -494,4 +498,20 @@ class ProfileData extends ProfileBaseData
}
}
}
/**
* @return boolean
*/
public function isAccPrivate()
{
return $this->accPrivate;
}
/**
* @param boolean $accPrivate
*/
public function setAccPrivate($accPrivate)
{
$this->accPrivate = $accPrivate;
}
}