| [ Index ] |
PHP Cross Reference of Nuke-Evolution v2.0.5 |
[Summary view] [Print] [Text view]
1 <?php 2 /*======================================================================= 3 Nuke-Evolution Basic: Enhanced PHP-Nuke Web Portal System 4 =======================================================================*/ 5 6 /************************************************************************ 7 Nuke-Evolution: Deprecated Functions 8 ============================================ 9 Copyright (c) 2005 by The Nuke-Evolution Team 10 11 Filename : functions_deprecated.php 12 Author : Quake (www.Nuke-Evolution.com) 13 Version : 1.0.0 14 Date : 11.21.2005 (mm.dd.yyyy) 15 16 Notes : Deprecated Functions 17 ************************************************************************/ 18 19 if (realpath(__FILE__) == realpath($_SERVER['SCRIPT_FILENAME'])) { 20 exit('Access Denied'); 21 } 22 23 // Here go the deprecated functions 24 25 $mainfile = true; 26 $nukeuser = (isset($_COOKIE['user'])) ? explode(':', addslashes(base64_decode($_COOKIE['user']))) : ''; 27 28 require_once (NUKE_INCLUDE_DIR.'sql_layer.php'); 29 30 function is_group($user, $name) { 31 global $debugger; 32 $debugger->handle_error("Use of deprecated function <strong>".__FUNCTION__."</strong>"); 33 } 34 35 function update_points($id){ 36 global $debugger; 37 $debugger->handle_error("Use of deprecated function <strong>".__FUNCTION__."</strong>"); 38 } 39 40 function public_message(){ 41 global $debugger; 42 $debugger->handle_error("Use of deprecated function <strong>".__FUNCTION__."</strong>"); 43 } 44 45 function stripos_clone($haystack, $needle, $offset=0) { 46 global $debugger; 47 $debugger->handle_error("Use of deprecated function <strong>".__FUNCTION__."</strong>"); 48 return stristr($haystack, $needle); 49 } 50 51 function formatAidHeader($aid) { 52 global $debugger; 53 $debugger->handle_error("Use of deprecated function <strong>".__FUNCTION__."</strong>"); 54 echo get_author($aid); 55 } 56 57 function FixQuotes($what = '') { 58 global $debugger; 59 $debugger->handle_error("Use of deprecated function <strong>".__FUNCTION__."</strong>"); 60 $what = Fix_Quotes($what); 61 return $what; 62 } 63 64 function selectlanguage() { 65 global $debugger; 66 $debugger->handle_error("Use of deprecated function <strong>".__FUNCTION__."</strong>"); 67 return; 68 } 69 70 function userblock() { 71 global $debugger; 72 $debugger->handle_error("Use of deprecated function <strong>".__FUNCTION__."</strong>"); 73 return; 74 } 75 76 function loginbox() { 77 global $debugger; 78 $debugger->handle_error("Use of deprecated function <strong>".__FUNCTION__."</strong>"); 79 return; 80 } 81 82 function adminblock() { 83 global $debugger; 84 $debugger->handle_error("Use of deprecated function <strong>".__FUNCTION__."</strong>"); 85 return; 86 } 87 88 function delQuotes($string) { 89 global $debugger; 90 $debugger->handle_error("Use of deprecated function <strong>".__FUNCTION__."</strong>"); 91 return $string; 92 } 93 94 function getusrinfo($trash=0, $force=false) { 95 global $userinfo, $debugger; 96 return $userinfo; 97 } 98 99 ?>
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
| Generated: Wed Jun 6 11:38:01 2007 | Cross-referenced by PHPXref 0.7 |