summaryrefslogtreecommitdiff
path: root/includes/view/ShiftEntry_view.php
diff options
context:
space:
mode:
authorPhilip Häusler <msquare@notrademark.de>2013-11-25 22:04:32 +0100
committerPhilip Häusler <msquare@notrademark.de>2013-11-25 22:04:32 +0100
commit7d3239f3fe18e920d77e7179ca58af618149fc51 (patch)
tree6bef88ae1795d611968ea769e724a3306992d4b7 /includes/view/ShiftEntry_view.php
parenta866e532e4129ef20178b9bce5a0fb870a3614d6 (diff)
forgot to add the new views
Diffstat (limited to 'includes/view/ShiftEntry_view.php')
-rw-r--r--includes/view/ShiftEntry_view.php28
1 files changed, 28 insertions, 0 deletions
diff --git a/includes/view/ShiftEntry_view.php b/includes/view/ShiftEntry_view.php
new file mode 100644
index 00000000..1080c4bc
--- /dev/null
+++ b/includes/view/ShiftEntry_view.php
@@ -0,0 +1,28 @@
+<?php
+
+/**
+ * Display form for adding/editing a shift entry.
+ * @param string $angel
+ * @param string $date
+ * @param string $location
+ * @param string $title
+ * @param string $type
+ * @param string $comment
+ *
+ * @return string
+ */
+function ShiftEntry_edit_view($angel, $date, $location, $title, $type, $comment) {
+ return page(array(
+ form(array(
+ form_info(_("Angel:"), $angel),
+ form_info(_("Date, Duration:"), $date),
+ form_info(_("Location:"), $location),
+ form_info(_("Title:"), $title),
+ form_info(_("Type:"), $type),
+ form_textarea('comment', _("Comment (for your eyes only):"), $comment),
+ form_submit('submit', _("Save"))
+ ))
+ ));
+}
+
+?> \ No newline at end of file