Home
last modified time | relevance | path

Searched refs:calId (Results 1 – 4 of 4) sorted by relevance

/plugin/calendar/
Dsyntax.php98 $calId = 'cal_' . md5(serialize($data) . microtime());
116 …$html = '<div class="calendar-compact-container" id="' . $calId . '" data-namespace="' . htmlspeci…
125 …$html .= '<script type="application/json" id="events-data-' . $calId . '">' . json_encode($events)…
132 …$html .= '<button class="cal-nav-btn" onclick="navCalendar(\'' . $calId . '\', ' . $prevYear . ', …
133 …$html .= '<h3 class="calendar-month-picker" onclick="openMonthPicker(\'' . $calId . '\', ' . $year…
134 …$html .= '<button class="cal-nav-btn" onclick="navCalendar(\'' . $calId . '\', ' . $nextYear . ', …
135 …$html .= '<button class="cal-today-btn" onclick="jumpToToday(\'' . $calId . '\', \'' . $namespace …
140 $html .= '<div class="calendar-namespace-filter" id="namespace-filter-' . $calId . '">';
143 …utton class="namespace-filter-clear" onclick="clearNamespaceFilter(\'' . $calId . '\')" title="Cle…
224 …. $classes . '" data-date="' . $dateKey . '" onclick="showDayPopup(\'' . $calId . '\', \'' . $date…
[all …]
Dcalendar-main.js37 window.filterCalendarByNamespace = function(calId, namespace) { argument
39 const container = document.getElementById(calId);
41 console.error('Calendar container not found:', calId);
49 navCalendar(calId, year, month, namespace);
53 window.navCalendar = function(calId, year, month, namespace) { argument
76 rebuildCalendar(calId, data.year, data.month, data.events, namespace);
87 window.jumpToToday = function(calId, namespace) { argument
91 navCalendar(calId, year, month, namespace);
95 window.jumpTodayPanel = function(calId, namespace) { argument
99 navEventPanel(calId, year, month, namespace);
[all …]
DTESTING_DATE_EDIT.md130 $html .= '<input type="date" id="event-date-' . $calId . '" name="date" required>';
137 document.getElementById('event-date-' + calId).value = date;
138 document.getElementById('event-date-' + calId).setAttribute('data-original-date', date);
144 const dateInput = document.getElementById('event-date-' + calId);
DCHANGELOG.md64 - ✅ Fixed tooltip function naming (sanitized calId for JavaScript)
157 const calendar = document.getElementById(calId);
163 const calendar = document.getElementById(calId);
168 - Regular calendar has element with id=calId
194 - **Fixed:** Add Event button calls openAddEvent() with calId, namespace, and today's date
213 - Added `$html .= $this->renderEventDialog($calId, $namespace);` at end of renderSidebarWidget()
214 - Changed Add Event onclick from alert to `openAddEvent('calId', 'namespace', 'YYYY-MM-DD')`
535 - **Fixed:** System tooltip functions now use sanitized calId (showTooltip_sidebar_abc123 instead o…
544 - Changed tooltip function names to use $jsCalId instead of $calId
555 - **Fixed:** Sanitized calId to jsCalId by replacing dashes with underscores
[all …]