Advertisement
Guest User

Untitled

a guest
Aug 3rd, 2021
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. <?php
  2.  
  3. $country_code = '{location-countrycode}';
  4.  
  5. // route geos to different ON DONE connectors
  6. switch ($country_code) {
  7. case 'US';case 'CA';case 'GB';case 'NZ';case 'AU':
  8. return 2;
  9. break;
  10. case 'DE':
  11. return 3;
  12. break;
  13. case 'FR':
  14. return 4;
  15. break;
  16. default:
  17. return 1; //default route is always 1
  18. }
  19.  
  20. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement