Constants.php in Lead Generation Contact Widget & AI Chatbot: Chat Button, Phone Call, Telegram, Email – SiteLeads trunk, at lib/Constants.php
| 1 | <?php |
| 2 | |
| 3 | namespace SiteLeads; |
| 4 | |
| 5 | |
| 6 | class Constants { |
| 7 | |
| 8 | static $siteLeadsDataPostType = 'siteleads-settings'; |
| 9 | |
| 10 | static $channels = array( |
| 11 | 'phone', |
| 12 | 'whatsapp', |
| 13 | 'email', |
| 14 | 'messenger', |
| 15 | 'instagramDm', |
| 16 | 'instagramPage', |
| 17 | 'wechat', |
| 18 | 'snapchat', |
| 19 | 'discord', |
| 20 | 'telegram', |
| 21 | 'sms', |
| 22 | 'tiktok', |
| 23 | 'x', |
| 24 | 'maps', |
| 25 | 'aiAgent', |
| 26 | ); |
| 27 | } |
| 28 |