HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
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 */