Lines Matching refs:allEvents
871 $allEvents = [];
892 $allEvents[$dateKey] = $monthEvents[$dateKey];
897 $allEvents = $this->checkTimeConflicts($allEvents);
902 return $this->renderSidebarWidget($allEvents, $namespace, $calId);
925 $allEvents = array();
956 $allEvents[$dateKey] = $monthEvents[$dateKey];
961 foreach ($allEvents as $dateKey => &$dayEvents) {
988 if ($today && !empty($allEvents) && !$noheader) {
1311 if (empty($allEvents)) {
1325 foreach ($allEvents as $dateKey => $dayEvents) {
1787 $allEvents = array();
1796 if (!isset($allEvents[$dateKey])) {
1797 $allEvents[$dateKey] = array();
1801 $allEvents[$dateKey][] = $event;
1806 return $allEvents;
1816 $allEvents = array();
1823 if (!isset($allEvents[$dateKey])) {
1824 $allEvents[$dateKey] = array();
1828 $allEvents[$dateKey][] = $event;
1834 if (!isset($allEvents[$dateKey])) {
1835 $allEvents[$dateKey] = array();
1839 $allEvents[$dateKey][] = $event;
1845 $this->findSubNamespaces($dataDir, $baseNamespace, $year, $month, $allEvents);
1847 return $allEvents;
1850 private function findSubNamespaces($dir, $baseNamespace, $year, $month, &$allEvents) { argument
1865 if (!isset($allEvents[$dateKey])) {
1866 $allEvents[$dateKey] = array();
1870 $allEvents[$dateKey][] = $event;
1875 $this->findSubNamespaces($path . '/', $namespace, $year, $month, $allEvents);