source: trunk/Packages/Common/Common.php@ 790

Last change on this file since 790 was 790, checked in by chronos, 9 years ago
  • Removed: Executable flag from PHP files.
  • Updated: Common package.
File size: 1.0 KB
Line 
1<?php
2
3include_once(dirname(__FILE__).'/Database.php');
4include_once(dirname(__FILE__).'/Image.php');
5include_once(dirname(__FILE__).'/Mail.php');
6include_once(dirname(__FILE__).'/NetworkAddress.php');
7include_once(dirname(__FILE__).'/PrefixMultiplier.php');
8include_once(dirname(__FILE__).'/RSS.php');
9include_once(dirname(__FILE__).'/UTF8.php');
10include_once(dirname(__FILE__).'/VarDumper.php');
11include_once(dirname(__FILE__).'/Error.php');
12include_once(dirname(__FILE__).'/Base.php');
13include_once(dirname(__FILE__).'/Application.php');
14include_once(dirname(__FILE__).'/AppModule.php');
15include_once(dirname(__FILE__).'/Config.php');
16include_once(dirname(__FILE__).'/Page.php');
17include_once(dirname(__FILE__).'/Locale.php');
18
19class PackageCommon
20{
21 var $Name;
22 var $Version;
23 var $License;
24 var $Creator;
25 var $Homepage;
26
27 function __construct()
28 {
29 $this->Name = 'Common';
30 $this->Version = '1.1';
31 $this->Creator = 'Chronos';
32 $this->License = 'GNU/GPL';
33 $this->Homepage = 'http://svn.zdechov.net/svn/PHPlib/Common/';
34 }
35}
Note: See TracBrowser for help on using the repository browser.