Changeset 417 for trunk/docs/zapisy/zapisy.php
- Timestamp:
- Oct 8, 2012, 9:36:55 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/docs/zapisy/zapisy.php
r4 r417 1 1 <?php 2 include('../../style.php');3 ShowHeader('Zápisy ze schůzí členů sítě','Zápisy ze schůzí');4 2 5 echo('<a href="Zapis_5.pdf">5. schůze (9.7.2005)</a><br> 6 <a href="Zapis_4.pdf">4. schůze (7.5.2005)</a><br> 7 <a href="Zapis_3.pdf">3. schůze (2.1.2005)</a><br> 8 <a href="Zapis_2.pdf">2. schůze (14.8.2004)</a><br>'); 3 include_once('../../global.php'); 9 4 10 ShowFooter(); 5 6 class 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 11 23 ?>
Note:
See TracChangeset
for help on using the changeset viewer.