Ignore:
Timestamp:
Jun 18, 2013, 6:07:52 PM (11 years ago)
Author:
chronos
Message:
  • Přidáno: Prvotní podpora pro modulární systém.
  • Přidáno: Podpora pro používání pěkných URL.
  • Upraveno: Vstupní stránka se generuje z modulu FrontPage.
  • Upraveno: Stránka banners převedena na modul Referrer.
Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk

    • Property svn:ignore
      •  

        old new  
        55.project
        66.buildpath
         7Query.log
  • trunk/includes/Page.php

    r542 r545  
    11<?php
    2 
    3 function ShowShoutbox()
    4 {
    5   global $System, $Config, $User, $System;
    6  
    7   $Output = '<strong><a href="'.$System->Link('/action.php?action=ShoutBoxView').'">Kecátko:</a></strong>';
    8   if($User->Licence(LICENCE_USER))
    9     $Output .= ' <a href="'.$System->Link('/action.php?action=shoutbox').'">Vložit</a>';
    10   $Output .= '<div class="box"><table>';
    11   $DbResult = $System->Database->query('SELECT * FROM `ShoutBox` ORDER BY `ID` DESC LIMIT 30');
    12   while($Line = $DbResult->fetch_assoc())
    13     $Output .= '<tr><td><strong>'.$Line['UserName'].'</strong>: '.MakeActiveLinks($Line['Text']).'</td></tr>';
    14   $Output .= '</table></div>';
    15   return($Output);
    16 }
    172
    183function ShowTopBar()
     
    340325}
    341326
     327class Page
     328{
     329  var $System;
     330  var $Database;
     331 
     332  function __construct($System)
     333  {
     334    $this->System = &$System;
     335    $this->Database = &$System->Database;   
     336  }
     337       
     338        function Show()
     339        {
     340                return('');
     341  }
     342 
     343  function GetOutput()
     344  {
     345        $Output = $this->Show();
     346        $Output = ShowPage($Output);     
     347        return($Output);
     348  }
     349}
     350
    342351?>
Note: See TracChangeset for help on using the changeset viewer.