2011-08-23 20:02:36 +04:00
|
|
|
<div id="choosecalendar_dialog" title="<?php echo $l->t("Choose active calendars"); ?>">
|
2011-08-28 22:13:40 +04:00
|
|
|
<table width="100%" style="border: 0;">
|
2011-08-23 20:02:36 +04:00
|
|
|
<?php
|
|
|
|
$option_calendars = OC_Calendar_Calendar::allCalendars(OC_User::getUser());
|
|
|
|
for($i = 0; $i < count($option_calendars); $i++){
|
2011-08-28 22:13:40 +04:00
|
|
|
echo "<tr>";
|
2011-08-31 22:20:46 +04:00
|
|
|
$tmpl = new OC_Template('calendar', 'part.choosecalendar.rowfields');
|
|
|
|
$tmpl->assign('calendar', $option_calendars[$i]);
|
|
|
|
$tmpl->printpage();
|
2011-08-28 22:13:40 +04:00
|
|
|
echo "</tr>";
|
2011-08-23 20:02:36 +04:00
|
|
|
}
|
|
|
|
?>
|
2011-08-28 22:13:40 +04:00
|
|
|
</table>
|
2011-08-23 20:02:36 +04:00
|
|
|
<script type="text/javascript">
|
|
|
|
$( "#choosecalendar_dialog" ).dialog({
|
|
|
|
width : 500,
|
|
|
|
close : function() {
|
|
|
|
oc_cal_opendialog = 0;
|
|
|
|
var lastchild = document.getElementById("body-user").lastChild
|
|
|
|
while(lastchild.id != "lightbox"){
|
|
|
|
document.getElementById("body-user").removeChild(lastchild);
|
|
|
|
lastchild = document.getElementById("body-user").lastChild;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|