Lines Matching refs:excludeList
824 $excludeList = $this->parseExcludeList($exclude);
857 $events = $this->loadEventsMultiNamespace($namespace, $year, $month, $excludeList);
948 private function loadEventsMultiNamespace($namespaces, $year, $month, $excludeList = []) { argument
952 return $this->loadEventsWildcard($baseNamespace, $year, $month, $excludeList);
957 return $this->loadEventsWildcard('', $year, $month, $excludeList);
970 if ($this->isNamespaceExcluded($ns, $excludeList)) continue;
992 private function loadEventsWildcard($baseNamespace, $year, $month, $excludeList = []) { argument
1002 …if (!$this->isNamespaceExcluded($baseNamespace, $excludeList) && $this->checkNamespaceRead($baseNa…
1017 $this->findCalendarNamespaces($dataDir, $metaDir, $year, $month, $allEvents, $excludeList);
1027 …unction findCalendarNamespaces($baseDir, $metaDir, $year, $month, &$allEvents, $excludeList = []) { argument
1048 if ($this->isNamespaceExcluded($namespace, $excludeList)) continue;
1074 $excludeList = $this->parseExcludeList($exclude);
1088 …CalendarDir = function($calDir, $eventNamespace) use ($normalizedSearch, &$results, $excludeList) {
1092 if ($this->isNamespaceExcluded($eventNamespace, $excludeList)) return;
1221 private function isNamespaceExcluded($namespace, $excludeList) { argument
1222 if (empty($excludeList) || $namespace === '') return false;
1223 foreach ($excludeList as $excluded) {