File Manager
<?php // -*- mode:php; tab-width:4; indent-tabs-mode:t; c-basic-offset:4; -*-
#CMS - CMS Made Simple
#(c)2004-2010 by Ted Kulp (ted@cmsmadesimple.org)
#This project's homepage is: http://cmsmadesimple.org
#
#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
#
#
#$Id: class.stylesheet.inc.php 7839 2012-04-07 19:10:42Z uniqu3 $
/**
* Stylesheet class definition
* @package CMS
* @license GPL
*/
/**
* Generic stylesheet class. This can be used for any logged in stylesheet or stylesheet related function.
*
* @since 0.11
* @package CMS
* @license GPL
*/
class Stylesheet
{
/**
* ID
*/
var $id;
/**
* Name
*/
var $name;
/**
* Value
*/
var $value;
/**
* CSS Media Type
*/
var $media_type;
/**
* CSS Media Type
*/
var $media_query;
/**
* Sets some initial values
*/
function Stylesheet()
{
$this->SetInitialValues();
}
/**
* Sets object to some sane initial values
*
* @access private
*/
function SetInitialValues()
{
$this->id = -1;
$this->name = '';
$this->value = '';
$this->media_type = '';
$this->media_query = '';
}
/**
* Gets the Stylesheet id.
*
* @return integer The id of the Stylesheet.
*/
function Id()
{
return $this->id;
}
/**
* Gets the Stylesheet name.
*
* @return string The name of the Stylesheet.
*/
function Name()
{
return $this->name;
}
/**
* Saves the Stylesheet to the database, creating a new record.
*
* @return mixed If successful, true. If it fails, false.
*/
function Save()
{
$result = false;
$styleops = cmsms()->GetStylesheetOperations();
if ($this->id > -1)
{
$result = $styleops->UpdateStylesheet($this);
}
else
{
$newid = $styleops->InsertStylesheet($this);
if ($newid > -1)
{
$this->id = $newid;
$result = true;
}
}
return $result;
}
/**
* Deletes the Stylesheet from the database.
*
* @return mixed If successful, true. If it fails, false.
*/
function Delete()
{
$result = false;
if ($this->id > -1)
{
$styleops = cmsms()->GetStylesheetOperations();
$result = $styleops->DeleteStylesheetByID($this->id);
if ($result)
{
$this->SetInitialValues();
}
}
return $result;
}
}
# vim:ts=4 sw=4 noet
?>
File Manager Version 1.0, Coded By Lucas
Email: hehe@yahoo.com