Blame Extras/phpBB/3.0.4/includes/ucp/info/ucp_groups.php

4c79b5
4c79b5
/**
4c79b5
*
4c79b5
* @package ucp
4c79b5
* @version $Id: ucp_groups.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 ucp_groups_info
4c79b5
{
4c79b5
	function module()
4c79b5
	{
4c79b5
		return array(
4c79b5
			'filename'	=> 'ucp_groups',
4c79b5
			'title'		=> 'UCP_USERGROUPS',
4c79b5
			'version'	=> '1.0.0',
4c79b5
			'modes'		=> array(
4c79b5
				'membership'	=> array('title' => 'UCP_USERGROUPS_MEMBER', 'auth' => '', 'cat' => array('UCP_USERGROUPS')),
4c79b5
				'manage'		=> array('title' => 'UCP_USERGROUPS_MANAGE', 'auth' => '', 'cat' => array('UCP_USERGROUPS')),
4c79b5
			),
4c79b5
		);
4c79b5
	}
4c79b5
4c79b5
	function install()
4c79b5
	{
4c79b5
	}
4c79b5
4c79b5
	function uninstall()
4c79b5
	{
4c79b5
	}
4c79b5
}
4c79b5
4c79b5
?>