[Openfirst-cvscommit] base/includes Skin.php,NONE,1.1
Brought to you by:
xtimg
From: Astronouth7303 <ast...@us...> - 2005-06-30 02:27:24
|
Update of /cvsroot/openfirst/base/includes In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11124/includes Added Files: Skin.php Log Message: Created Skin object, Needs to be integrated. --- NEW FILE: Skin.php --- <?php /* * openFIRST.base - includes/Skin.php * * Copyright (C) 2003, * 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 Skin class, which handles skinning openFIRST. class Skin { /*private*/ var $title; /*public*/ function getTitle() { return $this->title; } /*public*/ function setTitle($title) { $this->title = $title; } /*public*/ function getSlugText($slug) { } /*public*/ function outputHeader() { } /*public*/ function outputFooter() { } } ?> |