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/Manage.php

    r519 r521  
    11<?php
    22
    3 include_once(dirname(__FILE__).'/../Common/Global.php');
    4 
    5 class FinanceManagePage extends Page
     3class PageFinanceManage extends Page
    64{
    75  var $FullTitle = 'Správa financí';
    86  var $ShortTitle = 'Správa financí';
    9 
     7  var $ParentClass = 'PageFinance';
     8 
    109  function Show()
    1110  {
     
    7473        $Output .= '<a href="?Operation=ShowMonthlyPayment">Měsíční vyúčtování</a><br />';
    7574        //$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 />';
    7776        $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 />';
    7978    }
    8079    return($Output);
     
    632631}
    633632
    634 $System->AddModule(new FinanceManagePage());
    635 $System->Modules['FinanceManagePage']->GetOutput();
    636 
    637633?>
Note: See TracChangeset for help on using the changeset viewer.