Module: PhoneNumbers
- Defined in:
- app/constants/phone_numbers.rb
Overview
Default phone numbers for WarmlyYours
These are the default/fallback phone numbers used across the site.
For call tracking (CallRail), the ga_phone cookie overrides these
client-side via initPhoneTracking() in app_init.js
Usage:
PhoneNumbers::TOLLFREE # => "(800) 875-5285"
PhoneNumbers::TOLLFREE_LINK # => "18008755285"
PhoneNumbers::LOCAL # => "(847) 540-7775"
PhoneNumbers::LOCAL_LINK # => "18475407775"
PhoneNumbers::FAX # => "(800) 408-1100"
PhoneNumbers::FAX_LINK # => "18004081100"
Constant Summary collapse
- TOLLFREE =
Formatted display numbers - format: (xxx) xxx-xxxx
'(800) 875-5285'- LOCAL =
'(847) 540-7775'- FAX =
'(800) 408-1100'- TOLLFREE_LINK =
Link-friendly numbers (digits only for tel: links)
'18008755285'- LOCAL_LINK =
'18475407775'- FAX_LINK =
'18004081100'