attribute.inc.php

来自「采用模块化开发」· PHP 代码 · 共 13 行

PHP
13
字号
<?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 + =
减小字号Ctrl + -
显示快捷键?