diff options
author | redmatrix <redmatrix@redmatrix.me> | 2015-08-17 21:40:40 -0700 |
---|---|---|
committer | redmatrix <redmatrix@redmatrix.me> | 2015-08-17 21:40:40 -0700 |
commit | 1a4a921528f1405c131762954d16f0f6c6b690b6 (patch) | |
tree | 0f9e489abeca495c1877e4c1762fbb5f05cd66a6 /include/event.php | |
parent | 30fd17c58dccd688e99407b8c3a7b0cf9f4fbdfe (diff) | |
download | volse-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.php | 11 |
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') + ); +} |