@ -1,4 +1,12 @@
<?php
/**
* Automatic cleanup procedure
* @package chamilo.cron
* @author Yannick Warnier <yannick.warnier@beeznest.com>
*/
* Initialization
if (php_sapi_name() != 'cli') { exit; } //do not run from browser
$dir = dirname(__FILE__);
$a_dir = realpath($dir.'/../../archive/');
@ -4,10 +4,15 @@
* @package chamilo.notification
* @author Julio Montoya <gugli100@gmail.com>
$language_file = array('userInfo');
require_once '../inc/global.inc.php';
require_once api_get_path(LIBRARY_PATH).'notification.lib.php';
* Notification sending
$notify = new Notification();
$notify->send();
@ -4,6 +4,7 @@
* For more information, check the installation guide in the documentation
* folder.
* Add your own executable scripts below the inclusion of notification.php
* Settings that will influence the execution of the cron tasks
@ -4,7 +4,9 @@
* @package chamilo.social
$cidReset=true;
require '../inc/global.inc.php';
$language_file= 'userInfo';
// Language files that should be included
$cidReset = true;
// name of the language file that needs to be included
$language_file=array('userInfo');
$language_file = array('userInfo', 'forum');
@ -4,6 +4,9 @@
$language_file = array('messages','userInfo');
@ -1,5 +1,12 @@
/* For licensing terms, see /license.txt */
* Form for group message
$language_file = array('registration','messages','userInfo','admin');
@ -2,6 +2,10 @@
* @author Juan Carlos Trabado herodoto@telefonica.net
@ -6,7 +6,9 @@
* @author Isaac Flores Paz <florespaz_isaac@hotmail.com>
@ -1,5 +1,13 @@
* Helper file for friends and groups profiles
$language_file = array('registration','admin','userInfo');