Home
last modified time | relevance | path

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

/plugin/nspages/
H A DoptionParser.php92 static function checkExclude(&$match, &$excludedPages, &$excludedNs, &$excludeSelfPage){
96 self::_addListOfItemsToExclude(explode(' ', $found[1]), $excludedPages, $excludedNs);
102 $excludedNs[] = $subns[1];
120 static function checkGlobalExclude($globalExclude, &$excludedPages, &$excludedNs) {
122 self::_addListOfItemsToExclude(explode(',', $globalExclude), $excludedPages, $excludedNs);
126 private static function _addListOfItemsToExclude($excludeList, &$excludedPages, &$excludedNs) {
133 $excludedNs[] = PhpString::substr($exclude, 0, -1);
89 checkExclude(& $match, & $excludedPages, & $excludedNs, & $excludeSelfPage) global() argument
117 checkGlobalExclude($globalExclude, & $excludedPages, & $excludedNs) global() argument
123 _addListOfItemsToExclude($excludeList, & $excludedPages, & $excludedNs) global() argument
/plugin/nspages/fileHelper/
H A DpagePreparer.php21 function __construct($excludedNs, $excludedFiles, $pregOn, $pregOff, $pregTitleOn, $pregTitleOff, $useTitle, argument
27 $this->excludedNs = $excludedNs;
52 if (in_array($subNss[$i], $this->excludedNs)) {
/plugin/stats/
H A 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;