Blame view
sources/apps/calendar/templates/part.editcalendar.php
1.07 KB
|
d1bafeea1
|
1 2 3 4 5 6 7 8 |
<?php /** * Copyright (c) 2011 Bart Visscher <bartv@thisnet.nl> * This file is licensed under the Affero General Public License version 3 or * later. * See the COPYING-README file. */ ?> |
|
6d9380f96
|
9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
<div id="<?php p($_['new'] ? 'new' : 'edit') ?>calendar_dialog" title="<?php p($_['new'] ? $l->t("New calendar") : $l->t("Edit calendar")); ?>" colspan="6">
<span>
<input id="displayname_<?php p($_['calendar']['id']) ?>" type="text" value="<?php p($_['calendar']['displayname']) ?>">
<input id="editCalendar-submit" class="primary icon-checkmark-white" type="button" data-id="<?php p($_['new'] ? "new" : $_['calendar']['id']) ?>">
</span>
<select id="calendarcolor_<?php p($_['calendar']['id']) ?>" class="colorpicker">
<?php
if (!isset($_['calendar']['calendarcolor'])) {$_['calendar']['calendarcolor'] = false;}
foreach($_['calendarcolor_options'] as $color) {
print_unescaped('<option value="' . OC_Util::sanitizeHTML($color) . '"' . ($_['calendar']['calendarcolor'] == $color ? ' selected="selected"' : '') . '>' . OC_Util::sanitizeHTML($color) . '</option>');
}
?>
</select>
</div>
|