Changeset 479 for trunk/Common


Ignore:
Timestamp:
Feb 5, 2013, 9:45:44 PM (12 years ago)
Author:
chronos
Message:
  • Přidáno: Tabulka pro přiřazení více služeb jednomu zákazníkovi. Původní data jsou převedena do nové struktury. Tabulka Service je společná pro všechny typy služeb a pro každou službu se zobrazí nebo vyplní pouze určité použitelné sloupce.
  • Opraveno: Korekce názvů modulů na názvy začínající slovem Module.
Location:
trunk/Common
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Common/Global.php

    r477 r479  
    11<?php
     2
     3$Revision =
    24
    35$ConfigFileName = dirname(__FILE__).'/../config.php';
     
    294296 
    295297  // Register new modules
    296   $System->ModuleManager->RegisterModule(new Meteostation($System));
    297   $System->ModuleManager->RegisterModule(new Portal($System));
    298   $System->ModuleManager->RegisterModule(new IS($System));
    299   $System->ModuleManager->RegisterModule(new Network($System));
    300   $System->ModuleManager->RegisterModule(new TV($System));
     298  $System->ModuleManager->RegisterModule(new ModuleMeteostation($System));
     299  $System->ModuleManager->RegisterModule(new ModulePortal($System));
     300  $System->ModuleManager->RegisterModule(new ModuleIS($System));
     301  $System->ModuleManager->RegisterModule(new ModuleNetwork($System));
     302  $System->ModuleManager->RegisterModule(new ModuleTV($System));
    301303  $System->ModuleManager->RegisterModule(new ModuleOpeningHours($System));
    302304  $System->ModuleManager->RegisterModule(new ModuleMap($System));
  • trunk/Common/Page.php

    r473 r479  
    185185      $Output = $this->ShowHeader($this->FullTitle, $this->ShortTitle).$Output;
    186186      $Output .= $this->ShowFooter();
    187       if($this->FormatHTML == true) echo($this->FormatOutput($Output));
     187      if($this->FormatHTML == true) $Output = $this->FormatOutput($Output);
    188188    }
    189189    echo($Output);
Note: See TracChangeset for help on using the changeset viewer.