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:
parent
24e149428a
commit
0d126084ce
2 changed files with 9 additions and 10 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
?>
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
?>
|
Reference in a new issue