Changeset 341 for trunk/global.php


Ignore:
Timestamp:
Jan 17, 2012, 8:40:51 AM (13 years ago)
Author:
chronos
Message:
  • Přesunuto: Jednotky code a error.
  • Přidáno: Třída ModularSystem pro správu modulů systému.
  • Přidáno: Synchronizace seznamu modulů na disku a v databázi.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/global.php

    r340 r341  
    77 
    88include_once('database.php');
    9 //include('error.php');
    10 include_once('code.php');
     9include_once('Common/Error.php');
     10include_once('Common/Code.php');
    1111include_once('module.php');
    1212include_once('forms.php');
     
    1919include_once('finance/finance.php');
    2020include_once('Modules/Module.php');
     21include_once('Model.php');
    2122include_once('Modules/User/user.php');
    2223include_once('Modules/Project/Project.php');
     
    221222  $System->AddModule(new Bill());
    222223  $System->AddModule(new Finance());
    223   $System->Modules['Finance']->LoadMonthParameters(0);
     224  $System->Modules['Finance']->LoadMonthParameters(0);
     225 
     226  $System->ModularSystem = new ModularSystem($Database);
     227  $System->ModularSystem->ReloadList();
    224228}
    225229
     
    521525}
    522526
     527function DebugLog($Text)
     528{
     529  global $Config;
     530 
     531  if($Config['Web']['ShowDebug'])
     532  {
     533    if(isset($_SERVER['REMOTE_ADDR'])) $Ending = '<br/>'."\n";
     534      else $Ending = "\n";
     535      echo($Text.$Ending);
     536  }
     537}
     538
    523539GlobalInit();
    524540
Note: See TracChangeset for help on using the changeset viewer.