Advertisement
Guest User

Untitled

a guest
Feb 10th, 2012
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1.  
  2. function transfer_or_record() {
  3. // get the current time and day
  4. // date_default_timezone_set('America/New_York');
  5. $hour = date('H');
  6. $minute = date('i');
  7.  
  8. // make sure we're dealing with integers
  9. $hour = (int)$hour;
  10. $minute = (int)$minute;
  11. _log('the hour is '. $hour);
  12. _log('the minute is '. $minute);
  13.  
  14. // server time is 4 hours later than EST
  15. if(($hour == 21 && $minute > 30) || $hour > 21 || $hour < 12) {
  16. say("http://hosting.tropo.com/63931/www/audio/OutsideHours.mp3");
  17. record_voicemail();
  18. } else {
  19. transfer(array("sip:tscmoving@sip2sip.info","+1352328xxxx","+1352328xxxx"), array(
  20. "playvalue" => "http://hosting.tropo.com/63931/www/audio/TransferMessage.mp3",
  21. "terminator" => "*",
  22. "timeout" => 20,
  23. "onTimeout" => "transfer_timeout",
  24. "onError" => "transfer_timeout",
  25. "onCallFailure" => "transfer_timeout"
  26. )
  27. );
  28. }
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement