PHP Version : 5.6.30
MySQL Version : 5.5.40-log
Server Information : SunOS pubwww5.belwue.de 5.10 Generic_150400-09 sun4u
Fix jQuery? : Yes
Load JEvents Bootstrap CSS? : Yes
Max Input Vars ? : 1000
Club code set? : Yes
User Agent : Mozilla/5.0 (Windows NT 10.0; WOW64; rv:53.0) Gecko/20100101 Firefox/53.0
Joomla : 3.7.1
component_com_jevents : 3.4.39
component_com_jce : 2.6.7.1
module_mod_jevents_cal : 3.4.39
module_mod_jevents_custom : 3.4.39
module_mod_jevents_filter : 3.4.39
module_mod_jevents_latest : 3.4.39
module_mod_jevents_legend : 3.4.39
module_mod_jevents_switchview : 3.4.39
layout_JEventsRuthinLayout : 3.4.6
plugin_content_jevents : 3.4.39
plugin_finder_jevents : 3.4.39
plugin_installer_jeventsinstaller : 3.4.39 (not enabled)
plugin_jevents_jevpopupdetail : 3.4.3 (not enabled)
plugin_search_eventsearch : 3.4.39
plugin_system_gwejson : 3.4.39 (not enabled)
$start_publish = $row->getUnixStartDate();
$stop_publish = $row->getUnixEndDate();
$aktuell = strtotime($row->modified()); //vor maximal 7 Tagen eingetragene Links rot darstellen
$time_diff = time() - $aktuell;
if ($time_diff < 7*24*3600) {
$akt_farbe="#FF0000";
}
else {
$akt_farbe="#000000";
}
if ($stop_publish == $start_publish)
{
if ($row->noendtime())
{
$times = ' (<i>'.$start_time.'</i>
';
}
else if ($row->alldayevent())
{
$times = "";
}
else if ($start_time != $stop_time)
{
$times = ' (<i>'.$start_time . ' - ' . $stop_time_midnightFix.'</i>
';
}
else
{
$times = ' (<i>'.$start_time.'</i>
';
}
$times = '<font style="color:'.$akt_farbe.'">'. $start_date . $times . '</font><br/>';
}