diff options
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') + ); +} |