Changeset 521 for trunk/Modules/Finance/Finance.php
- Timestamp:
- Apr 14, 2013, 9:04:17 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/Finance/Finance.php
r505 r521 1 1 <?php 2 3 include_once(dirname(__FILE__).'/Overview.php'); 4 include_once(dirname(__FILE__).'/Consumption.php'); 5 include_once(dirname(__FILE__).'/Devices.php'); 6 include_once(dirname(__FILE__).'/Bill.php'); 7 include_once(dirname(__FILE__).'/Services.php'); 8 include_once(dirname(__FILE__).'/Customers.php'); 9 include_once(dirname(__FILE__).'/MonthlyOverall.php'); 10 include_once(dirname(__FILE__).'/Manage.php'); 11 include_once(dirname(__FILE__).'/UserState.php'); 12 include_once(dirname(__FILE__).'/Import.php'); 13 include_once(dirname(__FILE__).'/Zivnost.php'); 14 include_once(dirname(__FILE__).'/finance.php'); 2 15 3 16 class ModuleFinance extends AppModule … … 25 38 { 26 39 parent::Start(); 40 $this->System->RegisterPage('finance', 'PageFinance'); 41 $this->System->RegisterPage(array('finance', 'spotreba'), 'PageFinanceConsumption'); 42 $this->System->RegisterPage(array('finance', 'zarizeni'), 'PageFinanceDeviceList'); 43 $this->System->RegisterPage(array('finance', 'sluzby'), 'PageFinanceServices'); 44 $this->System->RegisterPage(array('finance', 'mesicni-prehledy'), 'PageFinanceMonthlyOverall'); 45 $this->System->RegisterPage(array('finance', 'zakaznici'), 'PageFinanceCustomers'); 46 $this->System->RegisterPage(array('finance', 'sprava'), 'PageFinanceManage'); 47 $this->System->RegisterPage(array('finance', 'platby'), 'PageFinanceUserState'); 48 $this->System->RegisterPage(array('finance', 'import'), 'PageFinanceImportPayment'); 49 $this->System->RegisterPage(array('finance', 'zivnost'), 'PageFinanceTaxFiling'); 27 50 } 28 51
Note:
See TracChangeset
for help on using the changeset viewer.