source: trunk/Modules/Finance/Finance.php@ 500

Last change on this file since 500 was 500, checked in by chronos, 12 years ago
  • Upraveno: Bankovní účty se nyní odkazují do seznamu existujících bank. Z nich se pak přiřazuje kód banky.
  • Upraveno: Pro import plateb z banky bude nově použit samostatný modul FinanceBankAPI.
  • Upraveno: Zkušební podpora formulářového typu soubor (File).
  • Upraveno: Kód PrefixMultiplier přesunut do samostatného souboru.
File size: 503 bytes
Line 
1<?php
2
3class ModuleFinance extends AppModule
4{
5 function __construct($System)
6 {
7 parent::__construct($System);
8 $this->Name = 'Finance';
9 $this->Version = '1.0';
10 $this->Creator = 'Chronos';
11 $this->License = 'GNU/GPLv3';
12 $this->Description = 'Base module for finance management';
13 $this->Dependencies = array();
14 }
15
16 function Install()
17 {
18 }
19
20 function Uninstall()
21 {
22 }
23
24 function Start()
25 {
26 parent::Start();
27 }
28
29 function Stop()
30 {
31 }
32}
33
34?>
Note: See TracBrowser for help on using the repository browser.