source: trunk/class/PageHome.php

Last change on this file was 18, checked in by maron, 12 years ago

kostra webu

File size: 302 bytes
Line 
1<?php
2
3// PageHome class
4// Date: 2012-06-13
5
6include_once('Page.php');
7
8class PageHome extends Page
9{
10
11 function __construct($Language)
12 {
13 parent::__construct('home',$Language);
14 }
15
16 protected function Generate() {
17 //generation of the page
18
19
20 parent::Generate($this->Content);
21
22 }
23
24}
25?>
Note: See TracBrowser for help on using the repository browser.