|
1234567891011121314151617181920212223 |
- <?php
- /**
- * 栏目菜单
- *
- * @version $Id: catalog_menu.php 1 14:31 2010年7月12日Z tianya $
- * @package DedeBIZ.Administrator
- * @copyright Copyright (c) 2022, DedeBIZ.COM
- * @license https://www.dedebiz.com/license
- * @link https://www.dedebiz.com
- */
- require_once(dirname(__FILE__)."/config.php");
- require_once(DEDEINC."/typeunit/typeunit.class.menu.php");
- $userChannel = $cuserLogin->getUserChannel();
- if (empty($opendir)) $opendir = -1;
- if ($userChannel > 0) $opendir = $userChannel;
-
- if ($cuserLogin->adminStyle == 'dedecms') {
- include DedeInclude('templets/catalog_menu.htm');
- exit();
- } else {
- include DedeInclude('templets/catalog_menu2.htm');
- exit();
- }
|