Ignore:
Timestamp:
Oct 13, 2012, 1:24:58 PM (12 years ago)
Author:
chronos
Message:
  • Přesunuto: Soubory s třídamy přesunuty do podsložky Common. Aktualizovány odkazy mezi soubory.
File:
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/Common/Global.php

    r437 r438  
    11<?php
    22
    3 $ConfigFileName = dirname(__FILE__).'/config.php';
     3$ConfigFileName = dirname(__FILE__).'/../config.php';
    44     
    55if(file_exists($ConfigFileName)) include_once($ConfigFileName);
    66  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');
     7include_once(dirname(__FILE__).'/Module.php');
     8include_once(dirname(__FILE__).'/Database.php');
     9include_once(dirname(__FILE__).'/Error.php');
     10include_once(dirname(__FILE__).'/Code.php');
     11include_once(dirname(__FILE__).'/Mail.php');
     12include_once(dirname(__FILE__).'/Log.php');
     13include_once(dirname(__FILE__).'/User.php');
     14include_once(dirname(__FILE__).'/Page.php');
     15include_once(dirname(__FILE__).'/Forms.php');
     16include_once(dirname(__FILE__).'/Types/Type.php');
     17include_once(dirname(__FILE__).'/File.php');
     18include_once(dirname(__FILE__).'/../aktuality/news.php');
     19include_once(dirname(__FILE__).'/../webcam/webcam.php');
     20include_once(dirname(__FILE__).'/../finance/bills.php');
     21include_once(dirname(__FILE__).'/../finance/finance.php');
    2222 
    2323$PrefixMultipliers = array
Note: See TracChangeset for help on using the changeset viewer.