Changeset 76 for trunk/www/Base


Ignore:
Timestamp:
Aug 24, 2009, 8:53:09 PM (15 years ago)
Author:
george
Message:
  • Přidáno: Podpora pro oprávnění uživatelů a skupin.
  • Upraveno: V include souborech použita cesta aktuálního skriptu.
Location:
trunk/www/Base
Files:
1 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/www/Base/Include.php

    r75 r76  
    11<?php
    22
    3 include('Base/Module.php');
    4 include('Base/Error.php');
    5 include('Base/Database.php');
    6 include('Base/UTF8.php');
    7 include('Base/System.php');
    8 include('Base/Global.php');
    9 include('Base/Html.php');
    10 include('Base/Model.php');
    11 include('Base/Controller.php');
    12 include('Base/View.php');
    13 include('Base/Table.php');
    14 include('Base/List.php');
    15 include('Base/Form.php');
    16 include('Base/Log.php');
    17 include('Base/Types/Include.php');
     3include(dirname(__FILE__).'/Module.php');
     4include(dirname(__FILE__).'/Error.php');
     5include(dirname(__FILE__).'/Database.php');
     6include(dirname(__FILE__).'/UTF8.php');
     7include(dirname(__FILE__).'/System.php');
     8include(dirname(__FILE__).'/Global.php');
     9include(dirname(__FILE__).'/Html.php');
     10include(dirname(__FILE__).'/Model.php');
     11include(dirname(__FILE__).'/Controller.php');
     12include(dirname(__FILE__).'/View.php');
     13include(dirname(__FILE__).'/Table.php');
     14include(dirname(__FILE__).'/List.php');
     15include(dirname(__FILE__).'/Form.php');
     16include(dirname(__FILE__).'/Log.php');
     17include(dirname(__FILE__).'/Types/Include.php');
    1818
    1919?>
  • trunk/www/Base/System.php

    r75 r76  
    9898  }
    9999 
    100   function SystemMessage($Title, $Text)
    101   {
    102     return('<table align="center"><tr><td><div class="SystemMessage"><h3>'.$Title.'</h3><div>'.$Text.'</div></div</td></tr></table>');
    103     //ShowFooter();
    104     //die();
    105   }
    106 
    107100  function MailUTF8($To, $Subject = '(No subject)', $Message = '', $Header = '')
    108101  {
  • trunk/www/Base/Types/Include.php

    r71 r76  
    11<?php
    22
    3 include('Base/Types/Base.php');
    4 include('Base/Types/Enumeration.php');
    5 include('Base/Types/Boolean.php');
    6 include('Base/Types/Integer.php');
    7 include('Base/Types/String.php');
    8 include('Base/Types/Text.php');
    9 include('Base/Types/PointerOneToMany.php');
    10 include('Base/Types/PointerOneToOne.php');
    11 include('Base/Types/Date.php');
    12 include('Base/Types/Time.php');
    13 include('Base/Types/DateTime.php');
    14 include('Base/Types/Password.php');
    15 include('Base/Types/Float.php');
    16 include('Base/Types/Hyperlink.php');
    17 include('Base/Types/Hidden.php');
    18 include('Base/Types/File/File.php');
    19 include('Base/Types/GPS.php');
    20 include('Base/Types/IPv4Address.php');
     3include(dirname(__FILE__).'/Base.php');
     4include(dirname(__FILE__).'/Enumeration.php');
     5include(dirname(__FILE__).'/Boolean.php');
     6include(dirname(__FILE__).'/Integer.php');
     7include(dirname(__FILE__).'/String.php');
     8include(dirname(__FILE__).'/Text.php');
     9include(dirname(__FILE__).'/PointerOneToMany.php');
     10include(dirname(__FILE__).'/PointerOneToOne.php');
     11include(dirname(__FILE__).'/Date.php');
     12include(dirname(__FILE__).'/Time.php');
     13include(dirname(__FILE__).'/DateTime.php');
     14include(dirname(__FILE__).'/Password.php');
     15include(dirname(__FILE__).'/Float.php');
     16include(dirname(__FILE__).'/Hyperlink.php');
     17include(dirname(__FILE__).'/Hidden.php');
     18include(dirname(__FILE__).'/File/File.php');
     19include(dirname(__FILE__).'/GPS.php');
     20include(dirname(__FILE__).'/IPv4Address.php');
    2121
    2222$TypeDefinitionList = array(
Note: See TracChangeset for help on using the changeset viewer.