Skip to content
Snippets Groups Projects
Commit cf891b33 authored by Juanjo Menent's avatar Juanjo Menent
Browse files

task #9747: Can show content of external calendar (ical) into agenda

parent ab7c0771
No related branches found
No related tags found
No related merge requests found
......@@ -503,6 +503,8 @@ if ($conf->global->ENABLE_AGENDA_EXT==1 && $conf->global->AGENDA_EXT_NB>0)
foreach($icalevents as $icalevent)
{
// Create a new object action
if(!is_array($icalevent[DTSTART])) //non-repeatable and not fullday event
{
$event=new ActionComm($db);
$paramkey='AGENDA_EXT_NAME'.$i;
$namecal = $conf->global->$paramkey;
......@@ -557,6 +559,11 @@ if ($conf->global->ENABLE_AGENDA_EXT==1 && $conf->global->AGENDA_EXT_NB>0)
while ($loop);
}
}
else //repeatable or fullday event
{
}
}
}
$i++;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment