linea21-modules
[ class tree: linea21-modules ] [ index: linea21-modules ] [ all elements ]

Source for file index.php

Documentation is available at index.php

  1. <?php
  2. /**
  3.  * @package linea21.modules
  4.  * @subpackage workshoprep
  5.  * @author linea21 <info@linea21.com>
  6.  * @version $id SVN
  7.  * @access public
  8.  * @license http://opensource.org/licenses/gpl-3.0.html
  9.  *  'Workshoprep' (as Workshop Report) module is used by 'Workshop' modules
  10.  */
  11.  
  12. //////////// Check Inclusion de pages ////////////
  13. if (!function_exists('AuthenthificationProcess')) {
  14.   include_once("../lib/lib_common.php");
  15.   ReloadIndex('admin');
  16. }
  17. ////////////
  18.  
  19. //////////// Check Droits utilisateur ////////////
  20. if (!hasRight('workshop')) ReloadIndex('admin');
  21. ////////////
  22.  
  23. include_once('../class/class.workshop_report.php');
  24.  
  25. $todopage=$dir."/";
  26. switch ($todo)
  27. {
  28.   case 'add':
  29.     $todopage.="add.php";
  30.     break;
  31.   case 'mod':
  32.     $todopage.="mod.php";
  33.     break;
  34.   case 'det':
  35.     $todopage.="det.php";
  36.     break;
  37.   case 'sup':
  38.     $todopage.="sup.php";
  39.     break;
  40.   default:
  41.     $todopage.="add.php";
  42. }
  43. include_once($todopage);
  44. ?>

Documentation generated on Thu, 03 May 2012 15:05:10 +0200 by phpDocumentor 1.4.1