portalcp_plugin.php 451 B

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