File: D:/HostingSpaces/RDamen/damenbeletteringen.nl/wwwroot/admin/system/cms/libraries/Theme.php
<?php defined('BASEPATH') or exit('No direct script access allowed');
/**
* PyroCMS Theme Definition
*
* This class should be extended to allow for theme management.
*
* @author Stephen Cozart
* @author PyroCMS Dev Team
* @package PyroCMS\Core\Libraries
* @abstract
*/
abstract class Theme {
/**
* @var theme name
*/
public $name;
/**
* @var author name
*/
public $author;
/**
* @var authors website
*/
public $author_website;
/**
* @var theme website
*/
public $website;
/**
* @var theme description
*/
public $description;
/**
* @var The version of the theme.
*/
public $version;
/**
* @var Front-end or back-end.
*/
public $type;
/**
* @var Designer defined options.
*/
public $options;
/**
* __get
*
* Allows this class and classes that extend this to use $this-> just like
* you were in a controller.
*
* @access public
* @return mixed
*/
public function __get($var)
{
return ci()->{$var};
}
}
/* End of file Theme.php */