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