acp_profile.php
来自「这些都是我以前学习是用到的源码」· PHP 代码 · 共 37 行
PHP
37 行
<?php/** ** @package acp* @version $Id: acp_profile.php,v 1.2 2006/05/01 19:45:42 grahamje Exp $* @copyright (c) 2005 phpBB Group * @license http://opensource.org/licenses/gpl-license.php GNU Public License **//*** @package module_install*/class acp_profile_info{ function module() { return array( 'filename' => 'acp_profile', 'title' => 'ACP_CUSTOM_PROFILE_FIELDS', 'version' => '1.0.0', 'modes' => array( 'profile' => array('title' => 'ACP_CUSTOM_PROFILE_FIELDS', 'auth' => 'acl_a_profile', 'cat' => array('ACP_CAT_USERS')), ), ); } function install() { } function uninstall() { }}?>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?