Guest User

Untitled

a guest
Oct 19th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. <?php
  2. // Method that checks whether the current day of week is either Saturday or Sunday using Joomla API
  3. function isWeekend()
  4. {
  5. // Comma separated list of days to check. Sunday = 7
  6. $allowDays = array(6,7);
  7.  
  8. // Do not edit below
  9. return in_array(JFactory::getDate()->format('N'), $allowDays);
  10. }
  11.  
  12. // Call method
  13. if (isWeekend())
  14. {
  15. echo 'Hooray! is weekend!';
  16. }
  17. ?>
Add Comment
Please, Sign In to add comment