2007-04-16 11:58:25 +00:00
|
|
|
<?php
|
|
|
|
class Block {
|
|
|
|
var $header;
|
|
|
|
var $body;
|
2007-06-30 01:19:11 +00:00
|
|
|
var $section;
|
|
|
|
var $position;
|
2007-04-16 11:58:25 +00:00
|
|
|
|
2007-06-30 01:19:11 +00:00
|
|
|
public function Block($header, $body, $section="main", $position=50) {
|
2007-04-16 11:58:25 +00:00
|
|
|
$this->header = $header;
|
|
|
|
$this->body = $body;
|
2007-06-30 01:19:11 +00:00
|
|
|
$this->section = $section;
|
|
|
|
$this->position = $position;
|
2007-04-16 11:58:25 +00:00
|
|
|
}
|
|
|
|
}
|
2007-12-04 22:24:58 +00:00
|
|
|
|
|
|
|
class NavBlock extends Block {
|
|
|
|
public function NavBlock() {
|
|
|
|
$this->header = "Navigation";
|
|
|
|
$this->body = "<a href='".make_link()."'>Index</a>";
|
|
|
|
$this->section = "left";
|
|
|
|
$this->position = 0;
|
|
|
|
}
|
|
|
|
}
|
2007-04-16 11:58:25 +00:00
|
|
|
?>
|