<?PHP
class Theme
{
var $id;
var $themename;
var $themepath;
function Theme($_id, $_themename, $_themepath)
{
$this->id = $_id;
$this->themename = $_themename;
$this->themepath = $_themepath;
}
function setid($_id) { $this->id = $_id; }
function getid() { return $this->id; }
function setthemename($_id) { $this->themename = $_themename; }
function getthemename() { return $this->themename; }
function setthemepath($_id) { $this->themepath = $_themepath; }
function getthemepath() { return $this->themepath; }
}
?>