freelink.inc.php
来自「phpcms2007很好的cms内容管理系统,操作方便」· PHP 代码 · 共 13 行
PHP
13 行
<?php
defined('IN_PHPCMS') or exit('Access Denied');
$types = cache_read('freelink_type.php');
$submenu[0] = array($LANG['type_manage'], '?mod='.$mod.'&file='.$file.'&action=type');
foreach($types as $k=>$v)
{
$submenu[] = array($k, '?mod='.$mod.'&file='.$file.'&action=manage&type='.urlencode($k));
}
$menu = adminmenu($LANG['freelink_manage'], $submenu);
$actions = array('type','update','manage','preview','delete');
if(!in_array($action, $actions)) $action = 'type';
include PHPCMS_ROOT.'/admin/action/'.$file.'_'.$action.'.inc.php';
?>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?