aboutsummaryrefslogtreecommitdiffstats
path: root/include/event.php
diff options
context:
space:
mode:
authorredmatrix <redmatrix@redmatrix.me>2015-08-17 21:40:40 -0700
committerredmatrix <redmatrix@redmatrix.me>2015-08-17 21:40:40 -0700
commit1a4a921528f1405c131762954d16f0f6c6b690b6 (patch)
tree0f9e489abeca495c1877e4c1762fbb5f05cd66a6 /include/event.php
parent30fd17c58dccd688e99407b8c3a7b0cf9f4fbdfe (diff)
downloadvolse-hubzilla-1a4a921528f1405c131762954d16f0f6c6b690b6.tar.gz
volse-hubzilla-1a4a921528f1405c131762954d16f0f6c6b690b6.tar.bz2
volse-hubzilla-1a4a921528f1405c131762954d16f0f6c6b690b6.zip
provide module for importing yearly content dumps
Diffstat (limited to 'include/event.php')
-rw-r--r--include/event.php11
1 files changed, 11 insertions, 0 deletions
diff --git a/include/event.php b/include/event.php
index 4393e6854..b690647fd 100644
--- a/include/event.php
+++ b/include/event.php
@@ -698,3 +698,14 @@ function event_store_item($arr, $event) {
return $item_id;
}
}
+
+
+function todo_stat() {
+ return array(
+ '' => t('Not specified'),
+ 'NEEDS-ACTION' => t('Needs Action'),
+ 'COMPLETED' => t('Completed'),
+ 'IN-PROCESS' => t('In Process'),
+ 'CANCELLED' => t('Cancelled')
+ );
+}