123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670 |
- <?php
- /** For licensing terms, see /license.txt */
- /**
- * This is a bootstrap file that loads all Chamilo dependencies including:
- *
- * - Chamilo settings in main/inc/configuration.php or main/inc/configuration.yml
- * - mysql database (Using Doctrine DBAL/ORM or the Classic way: Database::query())
- * - Templates (Using Twig)
- * - Loading language files (No Symfony component)
- * - Loading mail settings (SwiftMailer smtp/sendmail/mail)
- * - Debug (Using Monolog)
- *
- * ALL Chamilo scripts must include this file in order to have the $app container
- * This script returns a $app Application instance so you have access to all the services.
- *
- * @package chamilo.include
- *
- */
- // Fix bug in IIS that doesn't fill the $_SERVER['REQUEST_URI'].
- // @todo not sure if we need this
- // api_request_uri();
- // This is for compatibility with MAC computers.
- //ini_set('auto_detect_line_endings', '1');
- // Composer auto loader.
- require_once __DIR__.'../../../vendor/autoload.php';
- use Silex\Application;
- use \ChamiloSession as Session;
- use Symfony\Component\HttpFoundation\RedirectResponse;
- use Symfony\Component\HttpFoundation\Response;
- use Symfony\Component\HttpFoundation\Request;
- use Symfony\Component\Yaml\Parser;
- // Determine the directory path for this file.
- $includePath = dirname(__FILE__);
- // Start Silex.
- $app = new Application();
- // @todo add a helper to read the configuration file once!
- // Include the main Chamilo platform configuration file.
- // @todo use a service provider to load configuration files:
- /*
- $app->register(new Igorw\Silex\ConfigServiceProvider($settingsFile));
- */
- /** Loading configuration file */
- // Reading configuration file from main/inc/conf/configuration.php or app/config/configuration.yml
- $configurationFilePath = $includePath.'/conf/configuration.php';
- $configurationYMLFile = $includePath.'/../../config/configuration.yml';
- $configurationFileAppPath = $includePath.'/../../config/configuration.php';
- $alreadyInstalled = false;
- if (file_exists($configurationFilePath) || file_exists($configurationYMLFile) || file_exists($configurationFileAppPath)) {
- if (file_exists($configurationFilePath)) {
- require_once $configurationFilePath;
- }
- if (file_exists($configurationFileAppPath)) {
- $configurationFilePath = $configurationFileAppPath;
- require_once $configurationFileAppPath;
- }
- $alreadyInstalled = true;
- } else {
- $_configuration = array();
- }
- // Overwriting $_configuration
- if (file_exists($configurationYMLFile)) {
- $yaml = new Parser();
- $configurationYML = $yaml->parse(file_get_contents($configurationYMLFile));
- if (is_array($configurationYML) && !empty($configurationYML)) {
- if (isset($_configuration)) {
- $_configuration = array_merge($_configuration, $configurationYML);
- } else {
- $_configuration = $configurationYML;
- }
- }
- }
- /** End loading configuration file */
- /** Setting Chamilo paths */
- $app['root_sys'] = isset($_configuration['root_sys']) ? $_configuration['root_sys'] : dirname(dirname(__DIR__)).'/';
- $app['sys_data_path'] = isset($_configuration['sys_data_path']) ? $_configuration['sys_data_path'] : $app['root_sys'].'data/';
- $app['sys_config_path'] = isset($_configuration['sys_config_path']) ? $_configuration['sys_config_path'] : $app['root_sys'].'config/';
- $app['sys_temp_path'] = isset($_configuration['sys_temp_path']) ? $_configuration['sys_temp_path'] : $app['root_sys'].'temp/';
- $app['sys_log_path'] = isset($_configuration['sys_log_path']) ? $_configuration['sys_log_path'] : $app['root_sys'].'logs/';
- /** Including legacy libs */
- // Include the main Chamilo platform library file.
- require_once $includePath.'/lib/main_api.lib.php';
- // Setting url_append
- $urlInfo = isset($_configuration['root_web']) ? parse_url($_configuration['root_web']) : null;
- $_configuration['url_append'] = null;
- if (isset($urlInfo['path'])) {
- $_configuration['url_append'] = '/'.basename($urlInfo['path']);
- }
- // Do not over-use this variable. It is only for this scripts local use.
- $libPath = $includePath.'/lib/';
- // Database constants
- require_once $libPath.'database.constants.inc.php';
- // @todo Rewrite the events.lib.inc.php in a class
- require_once $libPath.'events.lib.inc.php';
- // Load allowed tag definitions for kses and/or HTMLPurifier.
- require_once $libPath.'formvalidator/Rule/allowed_tags.inc.php';
- /** Loading config files */
- if ($alreadyInstalled) {
- $configPath = $app['sys_config_path'];
- $confFiles = array(
- 'auth.conf.php',
- 'events.conf.php',
- 'mail.conf.php',
- 'portfolio.conf.php',
- 'profile.conf.php'
- );
- foreach ($confFiles as $confFile) {
- if (file_exists($configPath.$confFile)) {
- require_once $configPath.$confFile;
- }
- }
- // Fixing $_configuration array
- //Fixes bug in Chamilo 1.8.7.1 array was not set
- $administrator['email'] = isset($administrator['email']) ? $administrator['email'] : 'admin@example.com';
- $administrator['name'] = isset($administrator['name']) ? $administrator['name'] : 'Admin';
- // Code for transitional purposes, it can be removed right before the 1.8.7 release.
- /*if (empty($_configuration['system_version'])) {
- $_configuration['system_version'] = (!empty($_configuration['dokeos_version']) ? $_configuration['dokeos_version'] : '');
- $_configuration['system_stable'] = (!empty($_configuration['dokeos_stable']) ? $_configuration['dokeos_stable'] : '');
- $_configuration['software_url'] = 'http://www.chamilo.org/';
- }*/
- // For backward compatibility.
- $_configuration['dokeos_version'] = $_configuration['system_version'];
- //$_configuration['dokeos_stable'] = $_configuration['system_stable'];
- $userPasswordCrypted = (!empty($_configuration['password_encryption']) ? $_configuration['password_encryption'] : 'sha1');
- }
- /* Retrieving all the chamilo config settings for multiple URLs feature*/
- if (isset($_configuration['multiple_access_urls']) && !empty($_configuration['multiple_access_urls'])) {
- $_configuration['access_url'] = 1;
- $access_urls = api_get_access_urls();
- $protocol = ((!empty($_SERVER['HTTPS']) && strtoupper($_SERVER['HTTPS']) != 'OFF') ? 'https' : 'http').'://';
- $request_url1 = $protocol.$_SERVER['SERVER_NAME'].'/';
- $request_url2 = $protocol.$_SERVER['HTTP_HOST'].'/';
- foreach ($access_urls as & $details) {
- if ($request_url1 == $details['url'] or $request_url2 == $details['url']) {
- $_configuration['access_url'] = $details['id'];
- }
- }
- } else {
- $_configuration['access_url'] = 1;
- }
- $app['configuration'] = $_configuration;
- // Ensure that _configuration is in the global scope before loading
- // main_api.lib.php. This is particularly helpful for unit tests
- // @todo do not use $GLOBALS
- /*if (!isset($GLOBALS['_configuration'])) {
- $GLOBALS['_configuration'] = $_configuration;
- }*/
- // Add the path to the pear packages to the include path
- ini_set('include_path', api_create_include_path_setting());
- $app['configuration_file'] = $configurationFilePath;
- $app['configuration_yml_file'] = $configurationYMLFile;
- $app['languages_file'] = array();
- $app['installed'] = $alreadyInstalled;
- // Loading $app settings
- //require_once __DIR__.'/../../src/ChamiloLMS/Resources/config/prod.php';
- require_once __DIR__.'/../../src/ChamiloLMS/Resources/config/dev.php';
- // Classic way of render pages or the Controller approach
- $app['classic_layout'] = false;
- $app['full_width'] = false;
- $app['breadcrumb'] = array();
- // The script is allowed? This setting is modified when calling api_is_not_allowed()
- $app['allowed'] = true;
- // Template settings loaded in template.lib.php
- $app['template.show_header'] = true;
- $app['template.show_footer'] = true;
- $app['template.show_learnpath'] = false;
- $app['template.hide_global_chat'] = true;
- $app['template.load_plugins'] = true;
- // Default template style
- $app['template_style'] = 'default';
- // Default layout
- $app['default_layout'] = $app['template_style'].'/layout/layout_1_col.tpl';
- /** Including service providers */
- require_once 'services.php';
- // Connect to the server database and select the main chamilo database.
- if (!($conn_return = @Database::connect(
- array(
- 'server' => $app['configuration']['db_host'],
- 'username' => $app['configuration']['db_user'],
- 'password' => $app['configuration']['db_password'],
- 'persistent' => isset($app['configuration']['db_persistent_connection']) ? $app['configuration']['db_persistent_connection'] : null
- // When $app['configuration']['db_persistent_connection'] is set, it is expected to be a boolean type.
- )
- ))
- ) {
- //$app->abort(500, "Database is unavailable"); //error 3
- }
- /*
- if (!$app['configuration']['db_host']) {
- //$app->abort(500, "Database is unavailable"); //error 3
- }*/
- $charset = 'UTF-8';
- $checkConnection = false;
- if (isset($app['configuration']['main_database'])) {
- // The system has not been designed to use special SQL modes that were introduced since MySQL 5.
- Database::query("set session sql_mode='';");
- $checkConnection = @Database::select_db($app['configuration']['main_database'], $conn_return);
- if ($checkConnection) {
- // Initialization of the database encoding to be used.
- Database::query("SET SESSION character_set_server='utf8';");
- Database::query("SET SESSION collation_server='utf8_general_ci';");
- /* Initialization of the default encodings */
- // The platform's character set must be retrieved at this early moment.
- /*$sql = "SELECT selected_value FROM settings_current WHERE variable = 'platform_charset';";
- $result = Database::query($sql);
- while ($row = @Database::fetch_array($result)) {
- $charset = $row[0];
- }
- if (empty($charset)) {
- $charset = 'UTF-8';
- }*/
- //Charset is UTF-8
- /*
- if (api_is_utf8($charset)) {
- // See Bug #1802: For UTF-8 systems we prefer to use "SET NAMES 'utf8'" statement in order to avoid a bizarre problem with Chinese language.
- Database::query("SET NAMES 'utf8';");
- } else {
- Database::query("SET CHARACTER SET '".Database::to_db_encoding($charset)."';");
- }*/
- Database::query("SET NAMES 'utf8';");
- }
- }
- // Manage Chamilo error messages
- $app->error(
- function (\Exception $e, $code) use ($app) {
- if ($app['debug']) {
- //return;
- }
- if (isset($code)) {
- switch ($code) {
- case 401:
- $message = 'Unauthorized';
- break;
- case 404: // not found
- $message = 'The requested page could not be found.';
- break;
- default:
- //$message = 'We are sorry, but something went terribly wrong.';
- $message = $e->getMessage();
- }
- } else {
- $code = null;
- $message = null;
- }
- //$code = ($e instanceof HttpException) ? $e->getStatusCode() : 500;
- $app['twig']->addGlobal('error_code', $code);
- $app['twig']->addGlobal('error_message', $message);
- $response = $app['template']->render_layout('error.tpl');
- return new Response($response);
- }
- );
- // Preserving the value of the global variable $charset.
- $charset_initial_value = $charset;
- // Start session after the internationalization library has been initialized
- // @todo use silex session provider instead of a custom class
- Chamilo::session()->start($alreadyInstalled);
- // Loading chamilo settings
- /* @todo create a service provider to load plugins.
- Check how bolt add extensions (including twig templates, config with yml)*/
- $_plugins = array();
- if ($alreadyInstalled && $checkConnection) {
- $settings_refresh_info = api_get_settings_params_simple(array('variable = ?' => 'settings_latest_update'));
- $settings_latest_update = $settings_refresh_info ? $settings_refresh_info['selected_value'] : null;
- $_setting = isset($_SESSION['_setting']) ? $_SESSION['_setting'] : null;
- $_plugins = isset($_SESSION['_plugins']) ? $_SESSION['_plugins'] : null;
- if (empty($_setting)) {
- api_set_settings_and_plugins();
- } else {
- if (isset($_setting['settings_latest_update']) && $_setting['settings_latest_update'] != $settings_latest_update) {
- api_set_settings_and_plugins();
- $_setting = isset($_SESSION['_setting']) ? $_SESSION['_setting'] : null;
- $_plugins = isset($_SESSION['_plugins']) ? $_SESSION['_plugins'] : null;
- }
- }
- }
- $app['plugins'] = $_plugins;
- // Section (tabs in the main chamilo menu)
- $app['this_section'] = SECTION_GLOBAL;
- // Inclusion of internationalization libraries
- require_once $libPath.'internationalization.lib.php';
- // Functions for internal use behind this API
- require_once $libPath.'internationalization_internal.lib.php';
- // Setting languages
- $app['api_get_languages'] = api_get_languages();
- // Checking if we have a valid language. If not we set it to the platform language.
- if ($alreadyInstalled) {
- $app['language_interface'] = $language_interface = api_get_language_interface();
- } else {
- $app['language_interface'] = $language_interface = 'english';
- }
- // Initialization of the internationalization library.
- api_initialize_internationalization();
- // Initialization of the default encoding that will be used by the multibyte string routines in the internationalization library.
- api_set_internationalization_default_encoding($charset);
- // include the local (contextual) parameters of this course or section
- require $includePath.'/local.inc.php';
- // reconfigure templat now we know the user
- $app['template.hide_global_chat'] = !api_is_global_chat_enabled();
- /** Loading languages and sublanguages **/
- // @todo improve the language loading
- // if we use the javascript version (without go button) we receive a get
- // if we use the non-javascript version (with the go button) we receive a post
- // Include all files (first english and then current interface language)
- $app['this_script'] = isset($this_script) ? $this_script : null;
- // Sometimes the variable $language_interface is changed
- // temporarily for achieving translation in different language.
- // We need to save the genuine value of this variable and
- // to use it within the function get_lang(...).
- $language_interface_initial_value = $language_interface;
- $langPath = api_get_path(SYS_LANG_PATH);
- $this_script = $app['this_script'];
- $language_interface = $app['language_interface'];
- /* This will only work if we are in the page to edit a sub_language */
- if (isset($this_script) && $this_script == 'sub_language') {
- require_once api_get_path(SYS_CODE_PATH).'admin/sub_language.class.php';
- // getting the arrays of files i.e notification, trad4all, etc
- $language_files_to_load = SubLanguageManager:: get_lang_folder_files_list(
- api_get_path(SYS_LANG_PATH).'english',
- true
- );
- //getting parent info
- $languageId = isset($_REQUEST['id']) ? $_REQUEST['id'] : null;
- $parent_language = SubLanguageManager::get_all_information_of_language($languageId);
- $subLanguageId = isset($_REQUEST['sub_language_id']) ? $_REQUEST['sub_language_id'] : null;
- //getting sub language info
- $sub_language = SubLanguageManager::get_all_information_of_language($subLanguageId);
- $english_language_array = $parent_language_array = $sub_language_array = array();
- if (!empty($language_files_to_load))
- foreach ($language_files_to_load as $language_file_item) {
- $lang_list_pre = array_keys($GLOBALS);
- //loading english
- $path = $langPath.'english/'.$language_file_item.'.inc.php';
- if (file_exists($path)) {
- include $path;
- }
- $lang_list_post = array_keys($GLOBALS);
- $lang_list_result = array_diff($lang_list_post, $lang_list_pre);
- unset($lang_list_pre);
- // english language array
- $english_language_array[$language_file_item] = compact($lang_list_result);
- //cleaning the variables
- foreach ($lang_list_result as $item) {
- unset(${$item});
- }
- $parent_file = $langPath.$parent_language['dokeos_folder'].'/'.$language_file_item.'.inc.php';
- if (file_exists($parent_file) && is_file($parent_file)) {
- include_once $parent_file;
- }
- // parent language array
- $parent_language_array[$language_file_item] = compact($lang_list_result);
- //cleaning the variables
- foreach ($lang_list_result as $item) {
- unset(${$item});
- }
- if (!empty($sub_language)) {
- $sub_file = $langPath.$sub_language['dokeos_folder'].'/'.$language_file_item.'.inc.php';
- if (file_exists($sub_file) && is_file($sub_file)) {
- include $sub_file;
- }
- }
- // sub language array
- $sub_language_array[$language_file_item] = compact($lang_list_result);
- //cleaning the variables
- foreach ($lang_list_result as $item) {
- unset(${$item});
- }
- }
- }
- /**
- * Include all necessary language files
- * - trad4all
- * - notification
- * - custom tool language files
- */
- $language_files = array();
- $language_files[] = 'trad4all';
- $language_files[] = 'notification';
- $language_files[] = 'accessibility';
- // @todo Added because userportal and index are loaded by a controller should be fixed when a $app['translator'] is configured
- $language_files[] = 'index';
- $language_files[] = 'courses';
- $language_files[] = 'course_home';
- if (isset($language_file)) {
- if (!is_array($language_file)) {
- $language_files[] = $language_file;
- } else {
- $language_files = array_merge($language_files, $language_file);
- }
- }
- if (isset($app['languages_file'])) {
- $language_files = array_merge($language_files, $app['languages_file']);
- }
- // if a set of language files has been properly defined
- if (is_array($language_files)) {
- // if the sub-language feature is on
- if (api_get_setting('allow_use_sub_language') == 'true') {
- require_once api_get_path(SYS_CODE_PATH).'admin/sub_language.class.php';
- $parent_path = SubLanguageManager::get_parent_language_path($language_interface);
- foreach ($language_files as $index => $language_file) {
- // include English
- include $langPath.'english/'.$language_file.'.inc.php';
- // prepare string for current language and its parent
- $lang_file = $langPath.$language_interface.'/'.$language_file.'.inc.php';
- $parent_lang_file = $langPath.$parent_path.'/'.$language_file.'.inc.php';
- // load the parent language file first
- if (file_exists($parent_lang_file)) {
- include $parent_lang_file;
- }
- // overwrite the parent language translations if there is a child
- if (file_exists($lang_file)) {
- include $lang_file;
- }
- }
- } else {
- // if the sub-languages feature is not on, then just load the
- // set language interface
- foreach ($language_files as $index => $language_file) {
- // include English
- include $langPath.'english/'.$language_file.'.inc.php';
- // prepare string for current language
- $langFile = $langPath.$language_interface.'/'.$language_file.'.inc.php';
- if (file_exists($langFile)) {
- include $langFile;
- }
- }
- }
- }
- // End loading languages
- // Specification for usernames:
- // 1. ASCII-letters, digits, "." (dot), "_" (underscore) are acceptable, 40 characters maximum length.
- // 2. Empty username is formally valid, but it is reserved for the anonymous user.
- // 3. Checking the login_is_email portal setting in order to accept 100 chars maximum
- // @todo this should be configured somewhere else usermanager.class.php? a users.yml setting?
- $default_username_length = 40;
- if (api_get_setting('login_is_email') == 'true') {
- $default_username_length = 100;
- }
- @define('USERNAME_MAX_LENGTH', $default_username_length);
- /** Silex Middlewares: */
- /** A "before" middleware allows you to tweak the Request before the controller is executed */
- $app->before(
- function () use ($app, $checkConnection) {
- if (!file_exists($app['configuration_file']) && !file_exists($app['configuration_yml_file'])) {
- return new RedirectResponse(api_get_path(WEB_CODE_PATH).'install');
- $app->abort(500, "Incorrect PHP version");
- }
- //Check the PHP version
- if (api_check_php_version() == false) {
- $app->abort(500, "Incorrect PHP version");
- }
- if ($checkConnection == false) {
- $app->abort(500, "Database not available");
- }
- if (!is_writable(api_get_path(SYS_ARCHIVE_PATH))) {
- $app->abort(500, "temp folder must be writable");
- }
- // Check and modify the date of user in the track.e.online table
- //if ($checkConnection && !$x = strpos($_SERVER['PHP_SELF'], 'whoisonline.php')) {
- Online::loginCheck(api_get_user_id());
- //}
- //$app['request']->getSession()->start();
- //var_dump($app['cidReset']);
- }
- );
- /** An after application middleware allows you to tweak the Response before it is sent to the client */
- $app->after(
- function (Request $request, Response $response) {
- }
- );
- /** A "finish" application middleware allows you to execute tasks after the Response has been sent to
- * the client (like sending emails or logging) */
- $app->finish(
- function (Request $request) use ($app) {
- }
- );
- // End Silex Middlewares
- // The global variable $charset has been defined in a language file too (trad4all.inc.php), this is legacy situation.
- // So, we have to reassign this variable again in order to keep its value right.
- $charset = $charset_initial_value;
- // The global variable $text_dir has been defined in the language file trad4all.inc.php.
- // For determing text direction correspondent to the current language we use now information from the internationalization library.
- $text_dir = api_get_text_direction();
- // Update of the logout_date field in the table track_e_login (needed for the calculation of the total connection time)
- /** "Login as user" custom script */
- if (!isset($_SESSION['login_as']) && isset($_user)) {
- // if $_SESSION['login_as'] is set, then the user is an admin logged as the user
- $tbl_track_login = Database :: get_statistic_table(TABLE_STATISTIC_TRACK_E_LOGIN);
- $sql_last_connection = "SELECT login_id, login_date FROM $tbl_track_login WHERE login_user_id='".$_user["user_id"]."' ORDER BY login_date DESC LIMIT 0,1";
- $q_last_connection = Database::query($sql_last_connection);
- if (Database::num_rows($q_last_connection) > 0) {
- $i_id_last_connection = Database::result($q_last_connection, 0, 'login_id');
- // is the latest logout_date still relevant?
- $sql_logout_date = "SELECT logout_date FROM $tbl_track_login WHERE login_id = $i_id_last_connection";
- $q_logout_date = Database::query($sql_logout_date);
- $res_logout_date = convert_sql_date(Database::result($q_logout_date, 0, 'logout_date'));
- if ($res_logout_date < time() - $app['configuration']['session_lifetime']) {
- // now that it's created, we can get its ID and carry on
- $q_last_connection = Database::query($sql_last_connection);
- $i_id_last_connection = Database::result($q_last_connection, 0, 'login_id');
- }
- $s_sql_update_logout_date = "UPDATE $tbl_track_login SET logout_date=NOW() WHERE login_id='$i_id_last_connection'";
- Database::query($s_sql_update_logout_date);
- } else {
- // it isn't, we should create a fresh entry
- event_login();
- }
- }
- // Add language_measure_frequency to your main/inc/conf/configuration.php in
- // order to generate language variables frequency measurements (you can then
- // see them through main/cron/lang/langstats.php)
- // The langstat object will then be used in the get_lang() function.
- // This block can be removed to speed things up a bit as it should only ever
- // be used in development versions.
- // @todo create a service provider to load this
- if (isset($app['configuration']['language_measure_frequency']) && $app['configuration']['language_measure_frequency'] == 1) {
- require_once api_get_path(SYS_CODE_PATH).'/cron/lang/langstats.class.php';
- $langstats = new langstats();
- }
- /** Setting the course quota */
- // @todo move this somewhere else
- // Default quota for the course documents folder
- $default_quota = api_get_setting('default_document_quotum');
- // Just in case the setting is not correctly set
- if (empty($default_quota)) {
- $default_quota = 100000000;
- }
- @define('DEFAULT_DOCUMENT_QUOTA', $default_quota);
- /** Setting the is_admin key */
- $app['is_admin'] = false;
- /** Including routes */
- require_once 'routes.php';
- //Fixes uses of $_course in the scripts
- $_course = api_get_course_info();
- $_cid = api_get_course_id();
- return $app;
|