Ignore:
Timestamp:
Apr 14, 2013, 9:04:17 PM (11 years ago)
Author:
chronos
Message:
  • Upraveno: Finance přepracovány na aplikační modul. Upraveny URL adresy stránek.
  • Přidáno: Slučování registrovaných stránek do stromu stránek. Registgrovat lze nyní také pomocí cesty jako pole adresářů URL.
File:
1 copied

Legend:

Unmodified
Added
Removed
  • trunk/Modules/Finance/Overview.php

    r519 r521  
    11<?php
    22
    3 include_once('../Common/Global.php');
    4 
    5 class FinanceOverview extends Page
     3class PageFinance extends Page
    64{
    75  var $FullTitle = 'Přehled financování sítě';
     
    1412    $Output = '<table><tr><td valign="top">';
    1513   
    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 />';
    2321   
    2422    $Output .= '<br /><strong>Souhrn:</strong><br />';
     
    9593}
    9694
    97 $System->AddModule(new FinanceOverview());
    98 $System->Modules['FinanceOverview']->GetOutput();
    99 
    10095?>
Note: See TracChangeset for help on using the changeset viewer.