addView(new WikiPageMenuView($page, $action, 1)); switch ($this->action) { case 'new': $this->addView(new WikiPageNewView($pageName, 2)); break; case 'edit': $this->addView(new WikiPageEditView($this->page, $this->action, 2)); break; case 'history': $this->addView(new WikiPageHistoryView($this->page, $this->action, 2)); break; case 'stats': $this->addView(new WikiPageStatsView($this->page, $this->action, 2)); break; default: $this->addView(new WikiPageContentView($this->page, $this->action, 2)); break; } $this->addView(new WikiPageMenuView($this->page, $this->action, 3)); } } ?>