notification.php 424 B

123456789101112131415161718
  1. <?php
  2. /* For licensing terms, see /license.txt */
  3. /**
  4. * @package chamilo.notification
  5. * @author Julio Montoya <gugli100@gmail.com>
  6. */
  7. /**
  8. * Initialization
  9. */
  10. if (PHP_SAPI!='cli') { die('Run this script through the command line or comment this line in the code'); }
  11. $language_file = array('userInfo');
  12. require_once '../inc/global.inc.php';
  13. /**
  14. * Notification sending
  15. */
  16. $notify = new Notification();
  17. $notify->send();