diff options
author | Georg Ehrke <georg.stefan.germany@googlemail.com> | 2011-08-31 20:20:46 +0200 |
---|---|---|
committer | Georg Ehrke <georg.stefan.germany@googlemail.com> | 2011-08-31 20:20:46 +0200 |
commit | 5678d78d54cdabf4b6971803acd0bd3eb3573cc9 (patch) | |
tree | afa20e855c2d8e41ec3d650ff746ee4335ec845f /apps/calendar/templates/part.choosecalendar.rowfields.php | |
parent | 9a60313c3b7a1abd3aa75d3c914682bfbd03fb07 (diff) | |
download | nextcloud-server-5678d78d54cdabf4b6971803acd0bd3eb3573cc9.tar.gz nextcloud-server-5678d78d54cdabf4b6971803acd0bd3eb3573cc9.zip |
new changes (e.g. show events) by Bart Visscher
Diffstat (limited to 'apps/calendar/templates/part.choosecalendar.rowfields.php')
-rwxr-xr-x | apps/calendar/templates/part.choosecalendar.rowfields.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/calendar/templates/part.choosecalendar.rowfields.php b/apps/calendar/templates/part.choosecalendar.rowfields.php new file mode 100755 index 00000000000..ebe1ca0b137 --- /dev/null +++ b/apps/calendar/templates/part.choosecalendar.rowfields.php @@ -0,0 +1,4 @@ +<?php + echo "<td width=\"20px\"><input id=\"active_" . $_['calendar']["id"] . "\" type=\"checkbox\" onClick=\"oc_cal_calender_activation(this, " . $_['calendar']["id"] . ")\"" . ($_['calendar']["active"] ? ' checked="checked"' : '') . "></td>"; + echo "<td><label for=\"active_" . $_['calendar']["id"] . "\">" . $_['calendar']["displayname"] . "</label></td>"; + echo "<td width=\"20px\"><a style=\"display: block; opacity: 0.214133;\" href=\"#\" title=\"" . $l->t("Download") . "\" class=\"action\"><img src=\"/owncloud/core/img/actions/download.svg\"></a></td><td width=\"20px\"><a style=\"display: block; opacity: 0.214133;\" href=\"#\" title=\"" . $l->t("Edit") . "\" class=\"action\" onclick=\"oc_cal_editcalendar(this, " . $_['calendar']["id"] . ");\"><img src=\"/owncloud/core/img/actions/rename.svg\"></a></td>"; |