added toolbar to user screen #56 (#66)

* added toolbar to user screen # 56
* added filter for user role in user admin toolbar # 56
* added unit tests for queries # 56
This commit is contained in:
Kevin Papst
2018-01-09 17:15:07 +01:00
committed by GitHub
parent 56fca32845
commit 03896e3a1a
26 changed files with 684 additions and 96 deletions

View File

@@ -21,4 +21,26 @@ interface VisibilityInterface
const SHOW_VISIBLE = 1;
const SHOW_HIDDEN = 0;
const SHOW_BOTH = 2;
/**
* @return $this
*/
public function getVisibility();
/**
* @param int $visibility
* @return $this
*/
public function setVisibility($visibility);
/**
* @return bool
*/
public function isExclusiveVisibility();
/**
* @param bool $exclusiveVisibility
* @return $this
*/
public function setExclusiveVisibility($exclusiveVisibility);
}