Provide two flags by default: "Priority" and "Needs Review".

This commit is contained in:
Michael Stenta 2018-03-19 13:09:02 -04:00
parent 0eb2d5fd61
commit aecfa19e94
1 changed files with 10 additions and 0 deletions

View File

@ -22,3 +22,13 @@ function farm_flags_list() {
function farm_flags_field_allowed_values() {
return farm_flags_list();
}
/**
* Implements hook_farm_flags().
*/
function farm_flags_farm_flags() {
return array(
'priority' => t('Priority'),
'review' => t('Needs Review'),
);
}