Lines Matching refs:exclude
93 //--Looking if the syntax -exclude[item1 item2] has been used
94 if(optionParser::preg_match_wrapper("exclude:\[(.*)\]", $match, $found)) {
100 optionParser::preg_match_all_wrapper("exclude:([^[ <>]*):", $match, $found);
107 optionParser::preg_match_all_wrapper("exclude:([^[ <>]*)", $match, $found);
114 if(optionParser::preg_match_wrapper("exclude", $match, $found)) {
127 foreach($excludeList as $exclude) {
128 $exclude = trim($exclude);
129 if ($exclude === "") {
132 if($exclude[-1] === ':') {
133 $excludedNs[] = PhpString::substr($exclude, 0, -1);
135 $excludedPages[] = $exclude;