[svn r10038] added some @todo information

skala
Patrick Cool 19 years ago
parent d396604413
commit 66cd1d8c24
  1. 5
      main/inc/conf/course_info.conf.php
  2. 4
      main/inc/global.inc.php
  3. 15
      main/install/configuration.dist.php

@ -8,6 +8,11 @@
==============================================================================
*/
/**
* @todo check if these are used. If this is the case then they should be changed into dokeos config settings and stored in the database.
*
*/
$course_info_is_editable = true;
//if (basename($_SERVER["SCRIPT_FILENAME"])==basename(__FILE__)) die("Va voir ailleurs");

@ -11,6 +11,10 @@
* - include of language files.
*
* @package dokeos.include
* @todo remove the code that displays the button that links to the install page
* but use a redirect immediately.
* @todo $statsDbName: rename variable and use $_configuration array
*
==============================================================================
*/

@ -36,6 +36,19 @@ install time.
==============================================================================
*/
/**
* @todo change these into a $_configuration array. $_configuration will use only the bare essential variables
* for configuring the platform (paths, database connections, ...). Changing a $_configuration variable
* CAN break the installation.
* Besides the $_configuration array there is also a $_settings array that contains variables that
* can be changed and will not break the platform.
* Some of the variables that are used here can move to the $_settings array (and thus be stored in the database)
* example: $is_trackingEnabled (assuming that the install script creates the necessary tables anyway.
* $phpMyAdminPath
*
* @todo use more obvious names for the variables and respect the code guidelines
*/
//============================================================================
// MYSQL connection settings
//============================================================================
@ -86,6 +99,7 @@ $coursesRepositoryAppend = "courses/";
// Directory of the admin-area
$rootAdminAppend = "admin/";
// Do not change the following values
// @todo should be moved to api_get_path
$clarolineRepositorySys = $rootSys.$clarolineRepositoryAppend;
$clarolineRepositoryWeb = $rootWeb.$clarolineRepositoryAppend;
$coursesRepositorySys = $rootSys.$coursesRepositoryAppend;
@ -142,6 +156,7 @@ $openoffice_conf['ftppasswd'] = '****';
// Plugin settings
//============================================================================
// plugins arrays
// @todo remove this because this is now handled through the dokeos config settings
$plugins["main_menu"] = array();
$plugins["main_menu_logged"] = array();
$plugins["banner"] = array();

Loading…
Cancel
Save