Changeset 838 for trunk/Modules/Import


Ignore:
Timestamp:
Jan 9, 2016, 11:45:01 PM (9 years ago)
Author:
chronos
Message:
  • Modified: Some libraries moved to Common package located at Packages directory.
  • Modified: Application class System renamed to Core. System class is not just basic parent class for application.
  • Fixed: alert file now use same application class as other files.
  • Modified: Error application module.
Location:
trunk/Modules/Import
Files:
2 edited

Legend:

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

    r817 r838  
    77class ModuleImport extends AppModule
    88{
    9   function __construct($System)
     9  function __construct(System $System)
    1010  {
    1111    parent::__construct($System);
     
    1818  }
    1919
    20   function Start()
     20  function DoStart()
    2121  {
    2222    $this->System->RegisterPage('import', 'PageImport');
     
    3131  var $System;
    3232
    33   function __construct($System)
     33  function __construct(System $System)
    3434  {
    3535    $this->System = &$System;
  • trunk/Modules/Import/cmd.php

    r816 r838  
    55include_once('Import.php');
    66
    7   $System = new System();
    8   $System->DoNotShowPage = true;
    9     $System->Run();
     7$System = new Core();
     8$System->DoNotShowPage = true;
     9$System->Run();
    1010$Import = new Import($System);
    1111
Note: See TracChangeset for help on using the changeset viewer.