Blame Extras/phpBB/3.0.4/includes/acp/info/acp_styles.php

4c79b5
4c79b5
/**
4c79b5
*
4c79b5
* @package acp
4c79b5
* @version $Id: acp_styles.php 8479 2008-03-29 00:22:48Z naderman $
4c79b5
* @copyright (c) 2005 phpBB Group
4c79b5
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
4c79b5
*
4c79b5
*/
4c79b5
4c79b5
/**
4c79b5
* @package module_install
4c79b5
*/
4c79b5
class acp_styles_info
4c79b5
{
4c79b5
	function module()
4c79b5
	{
4c79b5
		return array(
4c79b5
			'filename'	=> 'acp_styles',
4c79b5
			'title'		=> 'ACP_CAT_STYLES',
4c79b5
			'version'	=> '1.0.0',
4c79b5
			'modes'		=> array(
4c79b5
				'style'		=> array('title' => 'ACP_STYLES', 'auth' => 'acl_a_styles', 'cat' => array('ACP_STYLE_MANAGEMENT')),
4c79b5
				'template'	=> array('title' => 'ACP_TEMPLATES', 'auth' => 'acl_a_styles', 'cat' => array('ACP_STYLE_COMPONENTS')),
4c79b5
				'theme'		=> array('title' => 'ACP_THEMES', 'auth' => 'acl_a_styles', 'cat' => array('ACP_STYLE_COMPONENTS')),
4c79b5
				'imageset'	=> array('title' => 'ACP_IMAGESETS', 'auth' => 'acl_a_styles', 'cat' => array('ACP_STYLE_COMPONENTS')),
4c79b5
			),
4c79b5
		);
4c79b5
	}
4c79b5
4c79b5
	function install()
4c79b5
	{
4c79b5
	}
4c79b5
4c79b5
	function uninstall()
4c79b5
	{
4c79b5
	}
4c79b5
}
4c79b5
4c79b5
?>