Home
last modified time | relevance | path

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

/plugin/nspages/
DoptionParser.php92 static function checkExclude(&$match, &$excludedPages, &$excludedNs, &$excludeSelfPage){ argument
96 self::_addListOfItemsToExclude(explode(' ', $found[1]), $excludedPages, $excludedNs);
102 $excludedNs[] = $subns[1];
120 static function checkGlobalExclude($globalExclude, &$excludedPages, &$excludedNs) { argument
122 self::_addListOfItemsToExclude(explode(',', $globalExclude), $excludedPages, $excludedNs);
126 private static function _addListOfItemsToExclude($excludeList, &$excludedPages, &$excludedNs) { argument
133 $excludedNs[] = PhpString::substr($exclude, 0, -1);
/plugin/nspages/fileHelper/
DpagePreparer.php21 …function __construct($excludedNs, $excludedFiles, $pregOn, $pregOff, $pregTitleOn, $pregTitleOff, … argument
27 $this->excludedNs = $excludedNs;
52 if (in_array($subNss[$i], $this->excludedNs)) {
/plugin/stats/
Dsyntax.php47 var $excludedNs = ''; variable in syntax_plugin_wikistatistics
712 if (!is_null($this->excludedNs) && in_array($nstocheck,$this->excludedNs)) {
1059 $excludedNs = split(",",$this->getConf('ws_excludedns'));
1060 foreach ($excludedNs as $key => $value) {
1062 unset($excludedNs[$key]);
1066 $this->excludedNs = (count($excludedNs)>0) ? $excludedNs : null;