Ignore:
Timestamp:
Jun 18, 2013, 9:07:36 PM (11 years ago)
Author:
chronos
Message:
  • Upraveno: Import přepracován na aplikační modul.
Location:
trunk/Modules/Import
Files:
1 copied
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/Modules/Import/Import.php

    r550 r551  
    11<?php
     2
     3include_once(dirname(__FILE__).'/../../includes/dbc.php');
     4include_once(dirname(__FILE__).'/Manage.php');
     5
     6
     7class 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}
    225
    326class Import
     
    388411  }
    389412}
    390 
    391 ?>
Note: See TracChangeset for help on using the changeset viewer.