provide module for importing yearly content dumps

This commit is contained in:
redmatrix
2015-08-17 21:40:40 -07:00
parent 30fd17c58d
commit 1a4a921528
3 changed files with 199 additions and 0 deletions

View File

@@ -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')
);
}