summaryrefslogtreecommitdiff
path: root/includes/sys_template.php
diff options
context:
space:
mode:
authorPhilip Häusler <msquare@notrademark.de>2015-07-12 13:45:47 +0200
committerPhilip Häusler <msquare@notrademark.de>2015-07-12 13:45:47 +0200
commit53737666c64a5670d661ece071f5b913e45f195a (patch)
tree0895fa57e17a80830827037ef51d636c98dab498 /includes/sys_template.php
parent993d6a4f591607e998a65b105c964c546a04e285 (diff)
add bootstrap datepicker
Diffstat (limited to 'includes/sys_template.php')
-rw-r--r--includes/sys_template.php29
1 files changed, 29 insertions, 0 deletions
diff --git a/includes/sys_template.php b/includes/sys_template.php
index 1c3b38b1..452e3a82 100644
--- a/includes/sys_template.php
+++ b/includes/sys_template.php
@@ -123,6 +123,35 @@ function form_spinner($name, $label, $value) {
}
/**
+ * Render a bootstrap datepicker
+ *
+ * @param string $name
+ * Name of the parameter
+ * @param string $label
+ * Label
+ * @param int $value
+ * Unix Timestamp
+ * @return HTML
+ */
+function form_date($name, $label, $value) {
+ $id = $name . '-date';
+ $value = is_numeric($value) ? date('Y-m-d', $value) : '';
+ return form_element($label, '
+ <div class="input-group date" id="' . $id . '">
+ <input type="text" class="form-control" value="' . $value . '"><span class="input-group-addon">' . glyph('th') . '</span>
+ </div>
+ <script type="text/javascript">
+ $(function(){
+ $("#' . $id . '").datepicker({
+ language: "' . locale_short() . '",
+ format: "yyyy-mm-dd"
+ });
+ });
+ </script>
+ ', $id);
+}
+
+/**
* Rendert eine Liste von Checkboxen für ein Formular
*
* @param