Home
last modified time | relevance | path

Searched refs:ignoredPages (Results 1 – 3 of 3) sorted by relevance

/plugin/displayorphans/
H A D_local.php35 …public static function /* bool */ isPageIgnored(/* string */ $id, array $ignoredPages = null, arra… argument
37 if (!empty($ignoredPages) && in_array($id, $ignoredPages)) { return true; }
51 array $ignoredPages = null, array $ignoreNamespaces = null) argument
52 …{ return $item['exists'] && $item['count'] == 0 && !Logic::isPageIgnored($id, $ignoredPages, $igno…
55 array $ignoredPages = null, array $ignoreNamespaces = null) argument
56 …{ return !$item['exists'] && $item['count'] > 0 && !Logic::isPageIgnored($id, $ignoredPages, $igno…
59 array $ignoredPages = null, array $ignoreNamespaces = null) argument
60 …{ return $item['exists'] && $item['count'] > 0 && !Logic::isPageIgnored($id, $ignoredPages, $ignor…
H A Dhelper.php29 $ignoredPages = Util::asList($this->getConf('ignore_' . $type . '_pages'), ' ');
31 $items = $this->findItems($datadir, $itemFilterPredicate, $ignoredPages, $ignoreNamespaces);
36 …y */ findItems(/* string */ $datadir, callable $filter = null, array $ignoredPages = null, array $… argument
41 …{ if (empty($filter) || $filter($id, $item, $ignoredPages, $ignoreNamespaces)) { $items[$id] = $it…
/plugin/orphanswanted/
H A Dhelper.php96 $ignoredPages = $this->getConf('ignoredpages'); // Fetch pages which shouldn't be listed
97 if($ignoredPages != '') {
98 $ignoredPages = explode(';', $ignoredPages);
100 $ignoredPages = null;
161 if(!is_null($ignoredPages) && in_array($id, $ignoredPages)) {