move subclass to below main class, for consistency with later work

git-svn-id: file:///home/shish/svn/shimmie2/trunk@622 7f39781d-f577-437e-ae19-be835c7a54ca
This commit is contained in:
shish 2007-12-04 22:24:58 +00:00
parent 24e149428a
commit 0d126084ce
2 changed files with 9 additions and 10 deletions

View file

@ -12,4 +12,13 @@ class Block {
$this->position = $position;
}
}
class NavBlock extends Block {
public function NavBlock() {
$this->header = "Navigation";
$this->body = "<a href='".make_link()."'>Index</a>";
$this->section = "left";
$this->position = 0;
}
}
?>

View file

@ -1,10 +0,0 @@
<?php
class NavBlock extends Block {
public function NavBlock() {
$this->header = "Navigation";
$this->body = "<a href='".make_link()."'>Index</a>";
$this->section = "left";
$this->position = 0;
}
}
?>