Home
last modified time | relevance | path

Searched refs:hasNotFlag (Results 1 – 2 of 2) sorted by relevance

/dokuwiki/inc/TreeBuilder/
H A DPageTreeBuilder.php107 if ($this->hasNotFlag(self::FLAG_NO_NS)) {
112 if ($this->hasNotFlag(self::FLAG_NO_PAGES)) {
136 if ($this->hasNotFlag(self::FLAG_KEEP_INVALID) && cleanID($id) !== $id) {
195 if ($this->hasNotFlag(self::FLAG_KEEP_INVALID) && cleanID($id) !== $id) {
256 if (!$this->hasNotFlag(self::FLAG_KEEP_HIDDEN) && isHiddenPage($node->getId())) {
266 if (!$this->hasNotFlag(self::FLAG_KEEP_HIDDEN) && isHiddenPage($node->getId())) {
H A DAbstractBuilder.php108 public function hasNotFlag(int $flag): bool function in dokuwiki\\TreeBuilder\\AbstractBuilder