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 |
|
---|
3 | include_once(dirname(__FILE__).'/Database.php');
|
---|
4 | include_once(dirname(__FILE__).'/Image.php');
|
---|
5 | include_once(dirname(__FILE__).'/Mail.php');
|
---|
6 | include_once(dirname(__FILE__).'/NetworkAddress.php');
|
---|
7 | include_once(dirname(__FILE__).'/PrefixMultiplier.php');
|
---|
8 | include_once(dirname(__FILE__).'/RSS.php');
|
---|
9 | include_once(dirname(__FILE__).'/UTF8.php');
|
---|
10 | include_once(dirname(__FILE__).'/VarDumper.php');
|
---|
11 | include_once(dirname(__FILE__).'/Error.php');
|
---|
12 | include_once(dirname(__FILE__).'/Base.php');
|
---|
13 | include_once(dirname(__FILE__).'/Application.php');
|
---|
14 | include_once(dirname(__FILE__).'/AppModule.php');
|
---|
15 | include_once(dirname(__FILE__).'/Config.php');
|
---|
16 | include_once(dirname(__FILE__).'/Page.php');
|
---|
17 | include_once(dirname(__FILE__).'/Locale.php');
|
---|
18 |
|
---|
19 | class 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.