| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /inetpub/wwwroot/icd/jeventsComp/site/views/ext/week/tmpl/ |
Upload File : |
<?php
defined('_JEXEC') or die('Restricted access');
$cfg = & JEVConfig::getInstance();
global $mainframe;
$cfg = & JEVConfig::getInstance();
$option = JEV_COM_COMPONENT;
$Itemid = JEVHelper::getItemid();
$compname = JEV_COM_COMPONENT;
$viewname = $this->getViewName();
$viewpath = JURI::root() . "components/$compname/views/".$viewname."/assets";
$viewimages = $viewpath . "/images";
$view = $this->getViewName();
$data = $this->datamodel->getWeekData($this->year, $this->month, $this->day);
// previous and following month names and links
$followingWeek = $this->datamodel->getFollowingWeek($this->year, $this->month, $this->day);
$precedingWeek = $this->datamodel->getPrecedingWeek($this->year, $this->month, $this->day);
?>
<table class="maintable" align="center" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td class="tableh1" colspan="3">
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td><h2><?php echo JText::_("Weekly View");?></h2></td>
<td class="today" align="right"><?php echo $data['startdate'] . ' - ' . $data['enddate'] ;?></td>
</tr>
</table>
</td>
</tr>
<tr>
<td class="previousmonth" align="center" height="22" nowrap="nowrap" valign="middle" width="33%">
<!-- BEGIN previous_month_link_row -->
<?php echo "<a href='".$precedingWeek."' title='".JText::_("Preceeding Week")."' >"?>
<?php echo JText::_("Preceeding Week")."</a>";?>
<!-- END previous_month_link_row -->
</td>
<td class="currentmonth" style="background-color: rgb(208, 230, 246);" align="center" height="22" nowrap="nowrap" valign="middle">
<?php echo $data['startdate'] . ' - ' . $data['enddate'] ;?>
</td>
<td class="nextmonth" align="center" height="22" nowrap="nowrap" valign="middle" width="33%">
<?php echo "<a href='".$followingWeek."' title='next month' >"?>
<?php echo JText::_("Following Week")."</a>";?>
<?php echo "</a>";?>
</td>
</tr>
<?php
for( $d = 0; $d < 7; $d++ ){
$num_events = count($data['days'][$d]['rows']);
if ($num_events==0) continue;
$day_link = '<a class="ev_link_weekday" href="' . $data['days'][$d]['link'] . '" title="' . JText::_('JEV_CLICK_TOSWITCH_DAY') . '">'
. JEventsHTML::getDateFormat( $data['days'][$d]['week_year'], $data['days'][$d]['week_month'], $data['days'][$d]['week_day'], 2 ).'</a>'."\n";
echo '<tr class="tableh2"><td class="tableh2" colspan="3">' . $day_link . '</td></tr>' ;
echo "<tr>";
echo '<td class="ev_td_right" colspan="3">' ;
if ($num_events>0) {
echo "<ul class='ev_ul'>\n";
for( $r = 0; $r < $num_events; $r++ ){
$row = $data['days'][$d]['rows'][$r];
$listyle = 'style="border-color:'.$row->bgcolor().';"';
echo "<li class='ev_td_li' $listyle>\n";
$this->viewEventRowNew ( $row);
echo " :: ";
$this->viewEventCatRowNew($row);
echo "</li>\n";
}
echo "</ul>\n";
}
echo '</td></tr>' . "\n";
} // end for days
?>
</table>