configuration.php

来自「joomla的系统插件,用于用户的管理,可以开发或阻塞用户」· PHP 代码 · 共 39 行

PHP
39
字号
<?php
/**
* @package Blocklist
* @copyright (C) 2006 Websmurf
* @author Websmurf
**/

// ensure this file is being included by a parent file
defined( '_VALID_MOS' ) or die( 'Direct Access to this location is not allowed.' );

$bl_config['pagecontent'] = '<html xmlns="http://www.w3.org/1999/xhtml">
<head>
	<title>Access blocked</title>
	<link rel="stylesheet" href="templates/css/offline.css" type="text/css" />
	<link rel="shortcut icon" href="images/favicon.ico" />
	<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
</head>
<body>
<p>&nbsp;</p>
<table width="550" align="center" class="outline">
<tr>
	<td width="60%" height="50" align="center">
	<img src="images/joomla_logo_black.jpg" alt="Joomla! Logo" align="middle" />
	</td>
</tr>
<tr>
	<td align="center">
		<h1>
			Access blocked
		</h1>
		<br />
		{REASON}
	</td>
</tr>
</table>
</body>
</html>';

?>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?