Current Path :
/
home
/
develito
/
httpdocs
/
modules
/
mod_jevents_cal
/
tmpl
/
flat
/
Or
Select Your Path :
Upload File :
New :
File
Dir
/home/develito/httpdocs/modules/mod_jevents_cal/tmpl/flat/calendar.php
<?php /** * copyright (C) 2008-2025 GWESystems Ltd - All rights reserved */ // Check to ensure this file is included in Joomla! defined('_JEXEC') or die (); use Joomla\CMS\Language\Text; use Joomla\CMS\Factory; use Joomla\CMS\Uri\Uri; use Joomla\CMS\Router\Route; /** * HTML View class for the component frontend * * @static * */ include_once(JPATH_SITE . "/modules/mod_jevents_cal/tmpl/default/calendar.php"); #[\AllowDynamicProperties] class FlatModCalView extends DefaultModCalView { function _displayCalendarMod($time, $startday, $linkString, &$day_name, $monthMustHaveEvent = false, $basedate = false) { $db = Factory::getDbo(); $cfg = JEVConfig::getInstance(); $compname = JEV_COM_COMPONENT; $app = Factory::getApplication(); $input = $app->input; $cal_day = date("d", $time); // $cal_year=date("Y",$time); // $cal_month=date("m",$time); // list($cal_year,$cal_month,$cal_day) = JEVHelper::getYMD(); if (!$basedate) $basedate = $time; $base_year = date("Y", $basedate); $base_month = date("m", $basedate); $basefirst_of_month = JevDate::mktime(0, 0, 0, $base_month, 1, $base_year); $requestYear = $input->getInt("year", 0); $requestMonth = $input->getInt("month", 0); // special case when site link set the dates for the mini-calendar in the URL but not in the ajax request if ($requestMonth && $requestYear && $input->getString("task", "") != "modcal.ajax" && $this->modparams->get("minical_usedate", 0)) { $requestDay = $input->getInt("day", 1); $requestTime = JevDate::mktime(0, 0, 0, $requestMonth, $requestDay, $requestYear); if ($time - $basedate > 100000) $requestTime = JevDate::strtotime("+1 month", $requestTime); else if ($time - $basedate < -100000) $requestTime = JevDate::strtotime("-1 month", $requestTime); $cal_day = date("d", $requestTime); $cal_year = date("Y", $requestTime); $cal_month = date("m", $requestTime); $base_year = $requestYear; $base_month = $requestMonth; $basefirst_of_month = JevDate::mktime(0, 0, 0, $requestMonth, $requestDay, $requestYear); } else { $cal_year = date("Y", $time); $cal_month = date("m", $time); } $base_prev_month = $base_month - 1; $base_next_month = $base_month + 1; $base_next_month_year = $base_year; $base_prev_month_year = $base_year; if ($base_prev_month == 0) { $base_prev_month = 12; $base_prev_month_year -= 1; } if ($base_next_month == 13) { $base_next_month = 1; $base_next_month_year += 1; } $reg = Factory::getConfig(); $reg->set("jev.modparams", $this->modparams); if ($this->modparams->get("showtooltips", 0)) { $data = $this->datamodel->getCalendarData($cal_year, $cal_month, 1, false, false); $this->hasTooltips = true; } else { $data = $this->datamodel->getCalendarData($cal_year, $cal_month, 1, true, $this->modparams->get("noeventcheck", 0)); } $reg->set("jev.modparams", false); $width = $this->modparams->get("mod_cal_width", "165px"); $height = $this->modparams->get("mod_cal_height", "auto"); $rowheight = $this->modparams->get("mod_cal_rowheight", "auto"); $month_name = JEVHelper::getMonthName($cal_month); $to_day = date("Y-m-d", $this->timeWithOffset); $today = JevDate::mktime(0, 0, 0); $cal_prev_month = $cal_month - 1; $cal_next_month = $cal_month + 1; $cal_next_month_year = $cal_year; $cal_prev_month_year = $cal_year; // additional EBS if ($cal_prev_month == 0) { $cal_prev_month = 12; $cal_prev_month_year -= 1; } if ($cal_next_month == 13) { $cal_next_month = 1; $cal_next_month_year += 1; } $viewname = $this->getTheme(); $viewpath = Uri::root(true) . "/components/$compname/views/" . $viewname . "/assets"; $viewimages = $viewpath . "/images"; $linkpref = "index.php?option=$compname&Itemid=" . $this->myItemid . $this->cat . "&task="; $jev_component_name = JEV_COM_COMPONENT; $this->_navigationJS($this->_modid); $scriptlinks = []; if ($this->minical_prevmonth) { $linkprevious = htmlentities(Uri::base() . "index.php?option=$jev_component_name&task=modcal.ajax&day=1&month=$base_prev_month&year=$base_prev_month_year&modid=$this->_modid&tmpl=component" . $this->cat); $scriptlinks['linkprevious'] = $linkprevious; $linkprevious = '<img border="0" title="' . Text::_("JEV_PREVIOUSMONTH") . '" alt="' . Text::_("JEV_LAST_MONTH") . '" class="mod_events_link" src="' . $viewimages . '/mini_arrowleft.gif" onmousedown="callNavigation(\'' . $linkprevious . '\');" ontouchstart="callNavigation(\'' . $linkprevious . '\');" />'; } else { $scriptlinks['linkprevious'] = ""; } if ($this->minical_actmonth == 1) { $linkcurrent = $linkpref . "month.calendar&day=$cal_day&month=$cal_month&year=$cal_year"; $linkcurrent = Route::_($linkcurrent); $linkcurrent = $this->htmlLinkCloaking($linkcurrent, $month_name . " " . $cal_year, array( "style" => "text-decoration:none;color:inherit;" )); } elseif ($this->minical_actmonth == 2) { $linkcurrent = $month_name . " " . $cal_year; } else { $linkcurrent = ""; } /* * $linknext = $linkpref."month.calendar&day=$cal_day&month=$cal_next_month&year=$cal_next_month_year"; $linknext = Route::_($linknext); $linknext = $this->htmlLinkCloaking($linknext, '<img border="0" title="' . Text::_("JEV_NEXT_MONTH") . '" alt="' . Text::_("JEV_NEXT_MONTH") . '" src="'.$viewimages.'/mini_arrowright.gif"/>' ); */ $this->_navigationJS($this->_modid); if ($this->minical_nextmonth) { $linknext = htmlentities(Uri::base() . "index.php?option=$jev_component_name&task=modcal.ajax&day=1&month=$base_next_month&year=$base_next_month_year&modid=$this->_modid&tmpl=component" . $this->cat); $scriptlinks['linknext'] = $linknext; $linknext = '<img border="0" title="' . Text::_("JEV_NEXT_MONTH") . '" alt="' . Text::_("JEV_NEXT_MONTH") . '" class="mod_events_link" src="' . $viewimages . '/mini_arrowright.gif" onmousedown="callNavigation(\'' . $linknext . '\');" ontouchstart="callNavigation(\'' . $linknext . '\');" />'; } else { $scriptlinks['linknext'] = ""; } $content = ' <div id="flatcal_minical"> <table width="' . $width . '" cellspacing="1" cellpadding="0" border="0" align="center" class="flatcal_main_t"> <tr> <td style="vertical-align: top;">'; if ($this->minical_showlink) { $content .= ' <table style="width:100%;" cellspacing="0" cellpadding="2" border="0" class="flatcal_navbar"> <tr> <td class="link_prev"> ' . $linkprevious . ' </td> <td class="flatcal_month_label"> ' . $linkcurrent . ' </td> <td class="link_next"> ' . $linknext . ' </td> </tr> </table>'; } $content .= '<table style="width:100%; " class="flatcal_weekdays">'; $lf = "\n"; // Days name rows - with blank week no. $content .= "<tr>\n"; for ($i = 0; $i < 7; $i++) { $content .= "<td class='flatcal_weekdays'>" . $day_name [($i + $startday) % 7] . "</td>" . $lf; } $content .= "</tr>\n"; $datacount = count($data ["dates"]); $dn = 0; for ($w = 0; $w < 6 && $dn < $datacount; $w++) { $content .= "<tr style='height:$rowheight;'>\n"; for ($d = 0; $d < 7 && $dn < $datacount; $d++) { $currentDay = $data ["dates"] [$dn]; switch ($currentDay ["monthType"]) { case "prior" : case "following" : $content .= "<td class='flatcal_othermonth'/>\n"; break; case "current" : $dayOfWeek = JevDate::strftime("%w", $currentDay ["cellDate"]); $class = ($currentDay["cellDate"] == $today) ? "flatcal_todaycell" : "flatcal_daycell"; $linkclass = "flatcal_daylink"; if ($dayOfWeek == 0 && $currentDay["cellDate"] != $today) { $class = "flatcal_sundaycell"; $linkclass = "flatcal_sundaylink"; } if ($currentDay ["events"] || $this->modparams->get("noeventcheck", 0)) { $linkclass = "flatcal_busylink"; } $content .= "<td class='" . $class . "'>\n"; $tooltip = $this->getTooltip($currentDay, array('class' => $linkclass)); if ($tooltip) { $content .= $tooltip; } else { if ($this->modparams->get("emptydaylinks", 1) || $currentDay["events"] || $this->modparams->get("noeventcheck", 0)) { $content .= $this->htmlLinkCloaking($currentDay["link"], $currentDay['d'], array('class' => $linkclass, 'title' => Text::_('JEV_CLICK_TOSWITCH_DAY'))); } else { $content .= $currentDay['d']; } } $content .= "</td>\n"; break; } $dn++; } $content .= "</tr>\n"; } $content .= "</table>\n"; $content .= "</td></tr><tr class='full_cal_link'><td> </td></tr></table></div>\n"; if ($input->getCmd('jevtask', '') === 'modcal.ajax') { if (count($scriptlinks)){ $content .= "<script style='text/javascript'>xyz=1;" . json_encode($scriptlinks) . "zyx=1;</script>"; } } else { $content .= "<script style='text/javascript'>xyz=1;"; foreach ($scriptlinks as $k => $v) { $content .= "$k = '$v';\n"; } $content .= "zyx=1;</script>"; } return $content; } public function _navigationJS($modid) { JEVHelper::script("modules/mod_jevents_cal/tmpl/default/assets/js/calnav.js"); $specificScript = <<< SCRIPT function setupSpecificNavigation() { setupMiniCalTouchInteractions("#flatcal_minical", false); } SCRIPT; Factory::getDocument()->addScriptDeclaration($specificScript); } }