Files
thinksaas_lmve/app/topic/action/admin/options.php
T
2023-06-22 13:33:25 +08:00

26 lines
445 B
PHP

<?php
defined('IN_TS') or die('Access Denied.');
switch($ts){
//基本配置
case "":
$strOption = getAppOptions('topic');
include template("admin/options");
break;
case "do":
$arrOption = $_POST['option'];
#更新app配置选项
upAppOptions('topic',$arrOption);
#更新app导航和我的导航
upAppNav('topic',$arrOption['appname']);
qiMsg('修改成功!');
break;
}