Changeset 538 for trunk/Common


Ignore:
Timestamp:
May 18, 2013, 8:21:50 PM (12 years ago)
Author:
chronos
Message:
  • Upraveno: Některé formulářové typy přesunuty do jednotlivých modulů.
  • Přidáno: Moduly Customer, Task a Stock.
Location:
trunk/Common
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Common/AppModule.php

    r524 r538  
    2525    $this->Database = &$System->Database;
    2626    $this->Installed = false;
     27    $this->Dependencies = array();
    2728  }
    2829 
  • trunk/Common/Form/Form.php

    r536 r538  
    293293    unset($this->Classes[$Name]);
    294294  }
     295
     296  function RegisterFormType($Name, $Class)
     297  {
     298    $this->FormTypes[$Name] = $Class;
     299  }
     300 
     301  function UnregisterFormType($Name)
     302  {
     303    unset($this->FormTypes[$Name]);
     304  }
    295305}
    296306
  • trunk/Common/Global.php

    r536 r538  
    3939include_once(dirname(__FILE__).'/../Modules/Finance/Finance.php');
    4040include_once(dirname(__FILE__).'/../Modules/FinanceBankAPI/FinanceBankAPI.php');
     41include_once(dirname(__FILE__).'/../Modules/Customer/Customer.php');
    4142include_once(dirname(__FILE__).'/../Modules/NetworkShare/NetworkShare.php');
    4243include_once(dirname(__FILE__).'/../Modules/News/News.php');
     
    4748include_once(dirname(__FILE__).'/../Modules/NetworkConfigRouterOS/NetworkConfigRouterOS.php');
    4849include_once(dirname(__FILE__).'/../Modules/TimeMeasure/TimeMeasure.php');
     50include_once(dirname(__FILE__).'/../Modules/Task/Task.php');
     51include_once(dirname(__FILE__).'/../Modules/Stock/Stock.php');
    4952
    5053function GlobalInit()
     
    103106  $System->ModuleManager->RegisterModule(new ModuleFinance($System));
    104107  $System->ModuleManager->RegisterModule(new ModuleFinanceBankAPI($System));
     108  $System->ModuleManager->RegisterModule(new ModuleCustomer($System));
    105109  $System->ModuleManager->RegisterModule(new ModuleNetworkShare($System));
    106110  $System->ModuleManager->RegisterModule(new ModuleNews($System));
     
    111115  $System->ModuleManager->RegisterModule(new ModuleNetworkConfigLinux($System));
    112116  $System->ModuleManager->RegisterModule(new ModuleTimeMeasure($System));
     117  $System->ModuleManager->RegisterModule(new ModuleTask($System));
     118  $System->ModuleManager->RegisterModule(new ModuleStock($System));
    113119  $System->ModuleManager->StartAll();
    114120}
  • trunk/Common/Version.php

    r537 r538  
    11<?php
    22
    3 $Revision = 537; // Subversion revision
     3$Revision = 538; // Subversion revision
    44$DatabaseRevision = 535; // SQL structure revision
    55$ReleaseTime = '2013-05-18';
Note: See TracChangeset for help on using the changeset viewer.