blog.php

来自「sabreipb 2.1.6 utf-8中文版本!」· PHP 代码 · 共 68 行

PHP
68
字号
<?php/*+--------------------------------------------------------------------------|   Invision Blog Module|   =============================================|   by Remco Wilting|   (c) 2001 - 2005 Invision Power Services, Inc.|   |   =============================================|   Web: |   Email: +--------------------------------------------------------------------------||   > Blog AdminCP script wrapper|   > Script written by Remco Wilting|   > Date started: 27st August 2004|   > Module version: 0.1.001|+--------------------------------------------------------------------------*/if ( ! defined( 'IN_ACP' ) ){	print "<h1>Incorrect access</h1>You cannot access this file directly. If you have recently upgraded, make sure you upgraded 'admin.php'.";	exit();}class ad_blog {	var $base_url;	function auto_run()	{		//-----------------------------------------		// Kill globals - globals bad, Homer good.		//-----------------------------------------				$tmp_in = array_merge( $_GET, $_POST, $_COOKIE );				foreach ( $tmp_in as $k => $v )		{			unset($$k);		}		//-----------------------------------------		// Do some set up		//-----------------------------------------				if ( ! @is_dir( ROOT_PATH.'/modules/blog' ) )		{			$this->ipsclass->admin->show_inframe("");		}		else		{			require ROOT_PATH.'modules/blog/admin/ad_blog.php';						$adblog           =  new ad_blog_plugin();			$adblog->ipsclass =& $this->ipsclass;            $adblog->run_me();		}			}}?>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?