mirror of
https://github.com/nuxsmin/sysPass.git
synced 2026-03-13 11:57:50 +01:00
* [ADD] New accounts tags feature. You can now add and perform searches filtering by tags.
* [MOD] Changed select boxes behavior (work in progress). jQuery chosen plugin has been replaced by selectize.js
This commit is contained in:
@@ -40,6 +40,10 @@ class QueryData
|
||||
* @var string
|
||||
*/
|
||||
protected $query = '';
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
protected $mapClassName = '';
|
||||
|
||||
/**
|
||||
* @param $value
|
||||
@@ -77,4 +81,20 @@ class QueryData
|
||||
{
|
||||
$this->query = $query;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return string
|
||||
*/
|
||||
public function getMapClassName()
|
||||
{
|
||||
return $this->mapClassName;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $mapClassName
|
||||
*/
|
||||
public function setMapClassName($mapClassName)
|
||||
{
|
||||
$this->mapClassName = $mapClassName;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user