Changeset 521 for trunk/Modules/Finance/Overview.php
- Timestamp:
- Apr 14, 2013, 9:04:17 PM (12 years ago)
- File:
-
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/Finance/Overview.php
r519 r521 1 1 <?php 2 2 3 include_once('../Common/Global.php'); 4 5 class FinanceOverview extends Page 3 class PageFinance extends Page 6 4 { 7 5 var $FullTitle = 'Přehled financování sítě'; … … 14 12 $Output = '<table><tr><td valign="top">'; 15 13 16 $Output .= '<a href=" monthly_overall.php">Měsíční přehledy</a><br />';17 $Output .= '<a href=" tarify.php">Tarify</a><br />';18 $Output .= '<a href=" zarizeni.php">Výpis zařízení</a><br />';19 if($this->System->Modules['User']->CheckPermission('Finance', 'SubjectList')) $Output .= '<a href="clenove.php">Seznam členů</a><br />';20 $Output .= '<a href="spotreba.php">Spotřeba energie</a><br />';21 $Output .= '<a href="'.$this->System-> Config['Web']['RootFolder'].'/aktuality/index.php?category=9">Investice v síti</a><br />';22 //$Output .= '<a href=" faktury/">Faktury za internet</a><br />';14 $Output .= '<a href="'.$this->System->Link('/finance/mesicni-prehledy/').'">Měsíční přehledy</a><br />'; 15 $Output .= '<a href="'.$this->System->Link('/finance/sluzby/').'">Přehled nabízených služeb</a><br />'; 16 $Output .= '<a href="'.$this->System->Link('/finance/zarizeni/').'">Výpis zařízení</a><br />'; 17 if($this->System->Modules['User']->CheckPermission('Finance', 'SubjectList')) 18 $Output .= '<a href="'.$this->System->Link('/finance/zakaznici/').'">Seznam zákazníků</a><br />'; 19 $Output .= '<a href="'.$this->System->Link('/finance/spotreba/').'">Spotřeba energie</a><br />'; 20 //$Output .= '<a href="'.$this->System->Config['Web']['RootFolder'].'/aktuality/index.php?category=9">Investice v síti</a><br />'; 23 21 24 22 $Output .= '<br /><strong>Souhrn:</strong><br />'; … … 95 93 } 96 94 97 $System->AddModule(new FinanceOverview());98 $System->Modules['FinanceOverview']->GetOutput();99 100 95 ?>
Note:
See TracChangeset
for help on using the changeset viewer.