| Server IP : 54.36.91.62 / Your IP : 216.73.217.111 Web Server : Apache System : Linux webm013.cluster127.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : coopiak ( 151928) PHP Version : 8.3.23 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/coopiak/amisdesseniors-fr/montpellier/components/com_community/helpers/ |
Upload File : |
<?php
/**
* @copyright (C) 2013 iJoomla, Inc. - All rights reserved.
* @license GNU General Public License, version 2 (http://www.gnu.org/licenses/gpl-2.0.html)
* @author iJoomla.com <webmaster@ijoomla.com>
* @url https://www.jomsocial.com/license-agreement
* The PHP code portions are distributed under the GPL license. If not otherwise stated, all images, manuals, cascading style sheets, and included JavaScript *are NOT GPL, and are released under the IJOOMLA Proprietary Use License v1.0
* More info at https://www.jomsocial.com/license-agreement
*/
use Joomla\CMS\Date\Date;
use Joomla\CMS\Factory;
defined('_JEXEC') or die('Restricted access');
Class CCalendar
{
static public function generate_calendar($year, $month, $days = array(), $day_name_length = 3, $month_href = NULL, $first_day = 0, $pn = array()){
$config = CFactory::getConfig();
//set first day based on admin configuration
if($config->get('event_calendar_firstday') == 'Monday')
{
$first_day = 1;
}
else if($config->get('event_calendar_firstday') == 'Sunday')
{
$first_day = 0;
}
$first_of_month = gmmktime(0,0,0,$month,1,$year);
#remember that mktime will automatically correct if invalid dates are entered
# for instance, mktime(0,0,0,12,32,1997) will be the date for Jan 1, 1998
# this provides a built in "rounding" feature to generate_calendar()
//highlight date
$model = CFactory::getModel( 'events' );
$highlight_day = $model->getMonthlyEvents($month,$year);
$temp_day = array();
$all_day = array();//store all day with events within the month specified
foreach($highlight_day as $day)
{
$temp_day[] = date('d',strtotime($day->date_start)); // obj into one dimensional array
if(function_exists('date_diff'))
{
$datediff = date_diff(date_create($day->date_start),date_create($day->date_end));
$counter = $datediff->days;
}
else
{ //if using php 5.2
$date_sec = strtotime($day->date_end) - strtotime($day->date_start);
$counter = $date_sec/(3600 *24);
}
$date = date('d',strtotime($day->date_start));
if($month == date('m',strtotime($day->date_start)))
{
for($i=0; $i < $counter; $i++)
{
if(!in_array($date,$all_day))
{
array_push($all_day,$date);
}
$date ++;
}
}
else
{
$date = date('d',strtotime($day->date_end));
for($i=0;$i<$counter;$i++)
{
if(!in_array($date,$all_day))
{
array_push($all_day,$date);
}
$date --;
}
}
}
$highlight_day = $temp_day;
$mainframe = Factory::getApplication();
$systemOffset = $mainframe->get('offset');
$day_names = array(); #generate all the day names according to the current locale
for($n=0,$t=(3+$first_day)*86400; $n<7; $n++,$t+=86400)
{
#January 4, 1970 was a Sunday
$dayDate = new JDate($t,$systemOffset);
$day_names[$n] = $dayDate->format('D', false); #%A means full textual day name
}
list($month, $year, $month_name, $weekday) = explode(',',gmstrftime('%m,%Y,%B,%w',$first_of_month));
$mainframe = Factory::getApplication();
$systemOffset = $mainframe->get('offset');
$weekday = ($weekday + 7 - $first_day) % 7; #adjust for $first_day
$monthDate = new Date($first_of_month, $systemOffset);
$month_name = $monthDate->format('F');
$title = $month_name.' '.$year; #note that some locales don't capitalize month and day names
#Begin calendar. Uses a real <caption>. See http://diveintomark.org/archives/2002/07/03
@list($p, $pl) = each($pn);
@list($n, $nl) = each($pn); #previous and next links, if applicable
if($p) $p = '<span class="calendar-prev">'.($pl ? '<a href="'.htmlspecialchars($pl).'">'.$p.'</a>' : $p).'</span> ';
if($n) $n = ' <span class="calendar-next">'.($nl ? '<a href="'.htmlspecialchars($nl).'">'.$n.'</a>' : $n).'</span>';
$calendar = '<table class="cCalendar cResetTable calendar">'.
'<tr>
<td colspan="7">
<div class="calendar-month">
<span class="calendar-prev"><i class="com-glyph-arrow-l"></i></span>
<span class="calendar-month">'.$p.($month_href ? '<a href="'.htmlspecialchars($month_href).'">'.$title.'</a>' : $title).$n.'</span>
<span class="calendar-next"><i class="com-glyph-arrow-r"></i></span>
</div>
</td>
</tr>
<tr>';
if($day_name_length)
{
#if the day names should be shown ($day_name_length > 0)
#if day_name_length is >3, the full name of the day will be printed
foreach($day_names as $d)
{
$day_name = mb_substr($d,0,$day_name_length,'UTF-8');
$calendar .= '<th abbr="'.htmlentities($d).'">'.$day_name.'</th>';
}
$calendar .= "</tr>\n<tr>";
}
if($weekday > 0) $calendar .= '<td colspan="'.$weekday.'"> </td>'; #initial 'empty' days
for($day=1,$days_in_month=gmdate('t',$first_of_month); $day<=$days_in_month; $day++,$weekday++)
{
//check if day is in the highlighted list
$class = '';
if(in_array((string)$day,$highlight_day)){
$class = ' class="running event_date_'.$day.'" ';
}else if(in_array((string)$day,$all_day)){
$class = ' class="midrunning event_date_'.$day.'" ';
}
if($weekday == 7){
$weekday = 0; #start a new week
$calendar .= "</tr>\n<tr>";
}
if(isset($days[$day]) and is_array($days[$day])){
@list($link, $classes, $content) = $days[$day];
if(is_null($content)) $content = $day;
$calendar .= '<td'.($classes ? ' class="'.htmlspecialchars($classes).'">' : '>').
($link ? '<a href="'.htmlspecialchars($link).'">'.$content.'</a>' : $content).'</td>';
}
else $calendar .= "<td $class>$day</td>";
}
if($weekday != 7) $calendar .= '<td colspan="'.(7-$weekday).'"> </td>'; #remaining "empty" days
return $calendar."</tr>\n</table>\n<input class='cal-month-year' type='hidden' value='".$year.";".$month."'/>";
}
}