Minor updating documentation

skala
Julio Montoya 12 years ago
parent ddef60a6ee
commit 86c7d57c60
  1. 23
      web/index.php

@ -12,22 +12,23 @@
$app = require_once '../main/inc/global.inc.php'; $app = require_once '../main/inc/global.inc.php';
/** /**
* In order to execute Chamilo, you need a call to $app->run(). * In order to execute Chamilo, you need to call the $app->run() method.
* $app->run(); shows a page depending of the URL for example when entering * This method renders a page depending of the URL, for example when entering
* in "/web/index" * to "/web/index" Chamilo will call the controller "IndexController->indexAction()". This is
* Chamilo will render the controller IndexController->indexAction(). This is * because a router was assigned in the router.php file
* because a router was assigned at the end of global.inc.php: *
* $app->get('/index', 'index.controller:indexAction')->bind('index'); * $app->get('/index', 'index.controller:indexAction')->bind('index');
* *
* The "index.controller:indexAction" string is transformed (due a * The "index.controller:indexAction" string is transformed (due a
* controller - service approach) into * controller - service approach) into the method:
* ChamiloLMS\Controller\IndexController->indexAction() see more * ChamiloLMS\Controller\IndexController->indexAction() see more
* at: http://silex.sensiolabs.org/doc/providers/service_controller.html * at: http://silex.sensiolabs.org/doc/providers/service_controller.html
* The class is loaded automatically (no require_once needed) thanks to the * The class is loaded automatically (no require_once needed) thanks to the
* namespace ChamiloLMS added in Composer. * namespace ChamiloLMS added in Composer.
* The location of the file is src\ChamiloLMS\Controller\IndexController.php * The location of the file is src\ChamiloLMS\Controller\IndexController.php
* following the PSR-1 standards. * following the PSR-1 standards.
*/ */
/** @var Application */
/** @var \Silex\Application $app */
$app->run(); $app->run();
//$app['http_cache']->run(); //$app['http_cache']->run();

Loading…
Cancel
Save