Add Referral to source of awareness dropdown. #661

This commit is contained in:
Korina Cordero 2022-04-29 05:03:17 +00:00
parent ebaef97333
commit e44d8d3b06

View file

@ -11,6 +11,7 @@ class SourceOfAwareness extends NameValue
const FLYERS = 'flyers'; const FLYERS = 'flyers';
const WORD_OF_MOUTH = 'word_of_mouth'; const WORD_OF_MOUTH = 'word_of_mouth';
const OTHER = 'other'; const OTHER = 'other';
const REFERRAL = 'referral';
const COLLECTION = [ const COLLECTION = [
'facebook' => 'Facebook', 'facebook' => 'Facebook',
@ -19,6 +20,7 @@ class SourceOfAwareness extends NameValue
'tarp_ads' => 'Tarp Ads', 'tarp_ads' => 'Tarp Ads',
'flyers' => 'Flyers', 'flyers' => 'Flyers',
'word_of_mouth' => 'Word of Mouth', 'word_of_mouth' => 'Word of Mouth',
'referral' => 'Referral',
'other' => 'Other', 'other' => 'Other',
]; ];
} }