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

Last change on this file since 784 was 784, checked in by chronos, 9 years ago
File size: 1007 bytes
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');
17
18class PackageCommon
19{
20 var $Name;
21 var $Version;
22 var $License;
23 var $Creator;
24 var $Homepage;
25
26 function __construct()
27 {
28 $this->Name = 'Common';
29 $this->Version = '1.1';
30 $this->Creator = 'Chronos';
31 $this->License = 'GNU/GPL';
32 $this->Homepage = 'http://svn.zdechov.net/svn/PHPlib/Common/';
33 }
34}
Note: See TracBrowser for help on using the repository browser.