Changeset 521 for trunk/Modules/Finance/Manage.php
- Timestamp:
- Apr 14, 2013, 9:04:17 PM (12 years ago)
- File:
-
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/Finance/Manage.php
r519 r521 1 1 <?php 2 2 3 include_once(dirname(__FILE__).'/../Common/Global.php'); 4 5 class FinanceManagePage extends Page 3 class PageFinanceManage extends Page 6 4 { 7 5 var $FullTitle = 'Správa financí'; 8 6 var $ShortTitle = 'Správa financí'; 9 7 var $ParentClass = 'PageFinance'; 8 10 9 function Show() 11 10 { … … 74 73 $Output .= '<a href="?Operation=ShowMonthlyPayment">Měsíční vyúčtování</a><br />'; 75 74 //$Output .= '<a href="clenove.php">Seznam členů</a><br />'; 76 $Output .= '<a href=" zivnost.php">Živnost</a><br />';75 $Output .= '<a href="'.$this->System->Link('/finance/zivnost/').'">Živnost</a><br />'; 77 76 $Output .= '<a href="?Operation=GenerateBills">Generovat chybějící doklady</a><br />'; 78 $Output .= '<a href=" import.php">Import plateb</a><br />';77 $Output .= '<a href="'.$this->System->Link('/finance/import/').'">Import plateb</a><br />'; 79 78 } 80 79 return($Output); … … 632 631 } 633 632 634 $System->AddModule(new FinanceManagePage());635 $System->Modules['FinanceManagePage']->GetOutput();636 637 633 ?>
Note:
See TracChangeset
for help on using the changeset viewer.