Blame view

modules/admin/stat.php 379 Bytes
42868d70   andryeyev   Создал GIT
1
2
3
4
5
6
7
8
  <?php
  $modAction = isset($_REQUEST['modAction']) ? $_REQUEST['modAction'] : "stat";
  switch($modAction){
   case "stat" : include($_SERVER['DOCUMENT_ROOT'] . "/modules/admin/stat/stat.php"); break;
   case "stat2" : include($_SERVER['DOCUMENT_ROOT'] . "/modules/admin/stat/stat2.php"); break;
   default : include($_SERVER['DOCUMENT_ROOT'] . "/modules/admin/stat/stat.php"); break;
  }
  ?>