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

4c79b5
4c79b5
/**
4c79b5
*
4c79b5
* @package acp
4c79b5
* @version $Id: acp_php_info.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_php_info_info
4c79b5
{
4c79b5
	function module()
4c79b5
	{
4c79b5
		return array(
4c79b5
			'filename'	=> 'acp_php_info',
4c79b5
			'title'		=> 'ACP_PHP_INFO',
4c79b5
			'version'	=> '1.0.0',
4c79b5
			'modes'		=> array(
4c79b5
				'info'		=> array('title' => 'ACP_PHP_INFO', 'auth' => 'acl_a_phpinfo', 'cat' => array('ACP_GENERAL_TASKS')),
4c79b5
			),
4c79b5
		);
4c79b5
	}
4c79b5
4c79b5
	function install()
4c79b5
	{
4c79b5
	}
4c79b5
4c79b5
	function uninstall()
4c79b5
	{
4c79b5
	}
4c79b5
}
4c79b5
4c79b5
?>