Changeset 438 for trunk/Common/Global.php
- Timestamp:
- Oct 13, 2012, 1:24:58 PM (12 years ago)
- File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/Common/Global.php
r437 r438 1 1 <?php 2 2 3 $ConfigFileName = dirname(__FILE__).'/ config.php';3 $ConfigFileName = dirname(__FILE__).'/../config.php'; 4 4 5 5 if(file_exists($ConfigFileName)) include_once($ConfigFileName); 6 6 else die('Nenalezen konfigurační soubor '.$ConfigFileName.'!'); 7 include_once( 'module.php');8 include_once( 'database.php');9 include_once( 'error.php');10 include_once( 'code.php');11 include_once( 'Mail.php');12 include_once( 'forms.php');13 include_once( 'page.php');14 include_once( 'file.php');15 include_once( 'log.php');16 include_once( 'user.php');17 include_once( 'aktuality/news.php');18 include_once( 'webcam/webcam.php');19 include_once( 'finance/bills.php');20 include_once( 'finance/finance.php');21 include_once( 'Common/Types/Type.php');7 include_once(dirname(__FILE__).'/Module.php'); 8 include_once(dirname(__FILE__).'/Database.php'); 9 include_once(dirname(__FILE__).'/Error.php'); 10 include_once(dirname(__FILE__).'/Code.php'); 11 include_once(dirname(__FILE__).'/Mail.php'); 12 include_once(dirname(__FILE__).'/Log.php'); 13 include_once(dirname(__FILE__).'/User.php'); 14 include_once(dirname(__FILE__).'/Page.php'); 15 include_once(dirname(__FILE__).'/Forms.php'); 16 include_once(dirname(__FILE__).'/Types/Type.php'); 17 include_once(dirname(__FILE__).'/File.php'); 18 include_once(dirname(__FILE__).'/../aktuality/news.php'); 19 include_once(dirname(__FILE__).'/../webcam/webcam.php'); 20 include_once(dirname(__FILE__).'/../finance/bills.php'); 21 include_once(dirname(__FILE__).'/../finance/finance.php'); 22 22 23 23 $PrefixMultipliers = array
Note:
See TracChangeset
for help on using the changeset viewer.