ips.php
来自「sabreipb 2.1.6 utf-8中文版本!」· PHP 代码 · 共 163 行
PHP
163 行
<?php/*+--------------------------------------------------------------------------| Invision Power Board v2.1.5| =============================================| by Matthew Mecham| (c) 2001 - 2005 Invision Power Services, Inc.| | =============================================| Web: | Time: Wed, 01 Mar 2006 19:11:27 GMT| Release: | Licence Info: +---------------------------------------------------------------------------| > $Date: 2005-10-10 14:08:54 +0100 (Mon, 10 Oct 2005) $| > $Revision: 23 $| > $Author: matt $+---------------------------------------------------------------------------|| > IPS Remote Call thingy| > Module written by Matt Mecham| > Date started: 17th October 2002|| > Module Version Number: 1.0.0| > DBA Checked: Tue 25th May 2004+--------------------------------------------------------------------------*/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_ips { var $base_url; var $colours = array(); var $url = ""; var $version = "1.1"; function auto_run() { global $ibforums, $DB, $std; //----------------------------------------- // Kill globals - globals bad, Homer good. //----------------------------------------- $tmp_in = array_merge( $_GET, $_POST, $_COOKIE ); foreach ( $tmp_in as $k => $v ) { unset($$k); } //----------------------------------------- switch($this->ipsclass->input['code']) { case 'news': $this->news(); break; case 'updates': $this->updates(); break; case 'docs': $this->docs(); break; case 'support': $this->support(); break; case 'host': $this->host(); break; case 'purchase': $this->purchase(); break; //----------------------------------------- default: exit(); break; } } function news() { global $ibforums, $DB, $std; @header("Location: ".$this->url."?news"); exit(); } function updates() { global $ibforums, $DB, $std; //@header("Location: ".$this->url."?updates&version=".$this->version); @header("Location: ".$this->url."?updates"); exit(); } function docs() { global $ibforums, $DB, $std; @header("Location: /documentation/showdoc.php"); exit(); } function support() { global $ibforums, $DB, $std; @header("Location: ".$this->url."?support"); exit(); } function host() { global $ibforums, $DB, $std; @header("Location: ".$this->url."?host"); exit(); } function purchase() { global $ibforums, $DB, $std; @header("Location: ".$this->url."?purchase"); exit(); } }?>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?