Changeset 551 for trunk/Modules/Import/Import.php
- Timestamp:
- Jun 18, 2013, 9:07:36 PM (11 years ago)
- Location:
- trunk/Modules/Import
- Files:
-
- 1 copied
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/Import/Import.php
r550 r551 1 1 <?php 2 3 include_once(dirname(__FILE__).'/../../includes/dbc.php'); 4 include_once(dirname(__FILE__).'/Manage.php'); 5 6 7 class ModuleImport extends AppModule 8 { 9 function __construct($System) 10 { 11 parent::__construct($System); 12 $this->Name = 'Import'; 13 $this->Version = '1.0'; 14 $this->Creator = 'Chronos'; 15 $this->License = 'GNU/GPL'; 16 $this->Description = 'Support for import of data.'; 17 $this->Dependencies = array(); 18 } 19 20 function Start() 21 { 22 $this->System->RegisterPage('import', 'PageImport'); 23 } 24 } 2 25 3 26 class Import … … 388 411 } 389 412 } 390 391 ?>
Note:
See TracChangeset
for help on using the changeset viewer.