summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorFrédéric Guillot <contact@fredericguillot.com>2014-02-24 21:22:32 -0500
committerFrédéric Guillot <contact@fredericguillot.com>2014-02-24 21:22:32 -0500
commit44fc9c081fb7561b7b02115f9b2a6eb0349d2201 (patch)
tree314249cc9a8dfc23ecb2d1bcc089362418698a96 /lib
parent565290fbf9e3727655921a969550167aa59a6e24 (diff)
Add story points for tasks
Diffstat (limited to 'lib')
-rw-r--r--lib/helper.php5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/helper.php b/lib/helper.php
index 22121015..50071be1 100644
--- a/lib/helper.php
+++ b/lib/helper.php
@@ -230,3 +230,8 @@ function form_date($name, $values = array(), array $errors = array(), array $att
{
return form_input('date', $name, $values, $errors, $attributes, $class);
}
+
+function form_number($name, $values = array(), array $errors = array(), array $attributes = array(), $class = '')
+{
+ return form_input('number', $name, $values, $errors, $attributes, $class);
+}