Files
thinksaas_lmve/plugins/pubs/morenav/morenav.php
T
2023-06-22 13:33:25 +08:00

11 lines
322 B
PHP

<?php
defined('IN_TS') or die('Access Denied.');
//头部更多导航插件
function morenav(){
$arrNav = fileRead('data/plugins_pubs_morenav.php');
if($arrNav==''){
$arrNav = $GLOBALS['tsMySqlCache']->get('plugins_pubs_morenav');
}
include template('morenav','morenav');
}
addAction('pub_header_nav','morenav');