3 * The PeopleMenu control writes the beginning of the page for People pages.
5 * Copyright 2003 Mark O'Sullivan
6 * This file is part of Lussumo's Software Library.
7 * Lussumo's Software Library is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
8 * Lussumo's Software Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
9 * You should have received a copy of the GNU General Public License along with Vanilla; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
10 * The latest source code is available at www.lussumo.com
11 * Contact Mark O'Sullivan at mark [at] lussumo [dot] com
13 * @author Mark O'Sullivan
14 * @copyright 2003 Mark O'Sullivan
15 * @license http://lussumo.com/community/gpl.txt GPL 2
22 * Body frame for pages outside the forum (sign in, apply, forgotten password, etc)
25 class PeopleMenu
extends Control
{
28 function PeopleMenu (&$Context) {
29 $this->Name
= 'PeopleBody';
30 $this->Control($Context);
34 if ($this->CssClass
!= '') $this->CssClass
= ' '.$this->CssClass
;
35 $this->CallDelegate('PreRender');
36 include(ThemeFilePath($this->Context
->Configuration
, 'people_menu.php'));
37 $this->CallDelegate('PostRender');