[Openfirst-cvscommit] base/style Default.php,NONE,1.1
Brought to you by:
xtimg
From: Astronouth7303 <ast...@us...> - 2005-06-30 02:36:55
|
Update of /cvsroot/openfirst/base/style In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16032/style Added Files: Default.php Log Message: Skin object for default openFIRST skin. --- NEW FILE: Default.php --- <?php /* * openFIRST.base - style/Default.php * * Copyright (C) 2005, * openFIRST Project * Original Author: Jamie Bliss <ja...@op...> * * This program 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. * * This program 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. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * */ // Purpose: Defines the AwardModule class, a child of the Module class. class DefaultSkin extends Skin { /*public*/ function getSlugText($slug) { #Badly need something here } /*public*/ function outputHeader() { global $Title; $Title = $this->title; include('headers.php'); } /*public*/ function outputFooter() { include('footers.php'); } } ?> |