📄 attribute.inc.php
字号:
<?php
defined('IN_PHPCMS') or exit('Access Denied');
$submenu=array(
array($LANG['product_property_manage'],'?mod='.$mod.'&file=property&action=manage'),
array('<font color="red">'.$LANG['add_product_attribute'].'</font>','?mod='.$mod.'&file='.$file.'&action=add')
);
$menu=adminmenu($LANG['product_attribute_list'],$submenu);
$referer= isset($referer) ? $referer : $PHP_REFERER;
$action = isset($action) ? $action : 'manage';
$filearray = array('add','edit','delete','manage','listorder','list');
in_array($action,$filearray) or showmessage($LANG['illegal_action'],$referer);
require $file."_".$action.".inc.php";
?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -