a625fcd787
git-svn-id: file:///home/shish/svn/shimmie2/trunk@201 7f39781d-f577-437e-ae19-be835c7a54ca
10 lines
219 B
PHP
10 lines
219 B
PHP
<?php
|
|
class NavBlock extends Block {
|
|
public function NavBlock() {
|
|
$this->header = "Navigation";
|
|
$this->body = "<a href='".make_link("index")."'>Index</a>";
|
|
$this->section = "left";
|
|
$this->position = 0;
|
|
}
|
|
}
|
|
?>
|