123456789101112131415161718192021 |
- <?php
- /**
- * [Discuz!] (C)2001-2099 Comsenz Inc.
- * This is NOT a freeware, use is subject to license terms
- *
- * $Id: portalcp_plugin.php 25246 2011-11-02 03:34:53Z zhangguosheng $
- */
- if(!defined('IN_DISCUZ')) {
- exit('Access Denied');
- }
- $pluginkey = 'portalcp';
- $navtitle = $_G['setting']['plugins'][$pluginkey][$_GET['id']]['name'];
- include pluginmodule($_GET['id'], $pluginkey);
- include template('portal/portalcp_plugin');
- ?>
|