source: trunk/docs/zapisy/zapisy.php@ 438

Last change on this file since 438 was 438, checked in by chronos, 13 years ago
  • Přesunuto: Soubory s třídamy přesunuty do podsložky Common. Aktualizovány odkazy mezi soubory.
  • Property svn:executable set to *
File size: 547 bytes
Line 
1<?php
2
3include_once('../../Common/Global.php');
4
5
6class NotesPage extends Page
7{
8 var $FullTitle = 'Zápisy ze schůzí členů sítě';
9 var $ShortTitle = 'Zápisy ze schůzí';
10
11 function Show()
12 {
13 return('<a href="Zapis_5.pdf">5. schůze (9.7.2005)</a><br/>
14<a href="Zapis_4.pdf">4. schůze (7.5.2005)</a><br/>
15<a href="Zapis_3.pdf">3. schůze (2.1.2005)</a><br/>
16<a href="Zapis_2.pdf">2. schůze (14.8.2004)</a><br/>');
17 }
18}
19
20$System->AddModule(new NotesPage());
21$System->Modules['NotesPage']->GetOutput();
22
23?>
Note: See TracBrowser for help on using the repository browser.