0byt3m1n1
Path:
/
data
/
applications
/
aps.bak
/
tikiwiki
/
3.2.0-5
/
standard
/
scripts
/
[
Home
]
File: initlib.php.in
<?php // $Id: initlib.php,v 1.16 2007-10-12 07:55:41 nyloth Exp $ //this script may only be included - so its better to die if called directly. if (strpos($_SERVER['SCRIPT_NAME'],basename(__FILE__)) !== false) { header('location: index.php'); exit; } class TikiInit { function TikiInit() { } /** Return 'windows' if windows, otherwise 'unix' * \static */ function os() { static $os; if (!isset($os)) { if (strtoupper(substr(PHP_OS, 0, 3)) == 'WIN') { $os = 'windows'; } else { $os = 'unix'; } } return $os; } /** Return true if windows, otherwise false * \static */ static function isWindows() { static $windows; if (!isset($windows)) { $windows = strtoupper(substr(PHP_OS, 0, 3)) == 'WIN'; } return $windows; } /** Return ';' if windows otherwise ':' * \static */ static function pathSeparator() { static $separator; if (!isset($separator)) { if (strtoupper(substr(PHP_OS, 0, 3)) == 'WIN') { $separator = ';'; } else { $separator = ':'; } } return $separator; } /** Prepend $path to the include path * \static */ static function prependIncludePath($path) { $include_path = ini_get('include_path'); if ($include_path) { $include_path = $path . TikiInit::pathSeparator(). $include_path; } else { $include_path = $path; } if (phpversion() >= '4.3') return set_include_path ($include_path); else return ini_set('include_path', $include_path); } /** Append $path to the include path * \static */ static function appendIncludePath($path) { $include_path = ini_get('include_path'); if ($include_path) { $include_path .= TikiInit::pathSeparator(). $path; } else { $include_path = $path; } if (phpversion() >= '4.3') return set_include_path ($include_path); else return ini_set('include_path', $include_path); } /** Return system defined temporary directory. * In Unix, this is usually /tmp * In Windows, this is usually c:\windows\temp or c:\winnt\temp * \static */ function tempdir() { static $tempdir; if (!$tempdir) { return "@@ROOT_DIR@@/temp/"; $tempfile = tempnam(false,''); $tempdir = dirname($tempfile); @unlink($tempfile); } return $tempdir; } } function tiki_error_handling($errno, $errstr, $errfile, $errline) { global $prefs,$tiki_p_admin,$phpErrors; $err[E_ERROR] = 'E_ERROR'; $err[E_CORE_ERROR] = 'E_CORE_ERROR'; $err[E_USER_ERROR] = 'E_USER_ERROR'; $err[E_COMPILE_ERROR] = 'E_COMPILE_ERROR'; $err[E_WARNING] = 'E_WARNING'; $err[E_CORE_WARNING] = 'E_CORE_WARNING'; $err[E_USER_WARNING] = 'E_USER_WARNING'; $err[E_COMPILE_WARNING] = 'E_COMPILE_WARNING'; $err[E_PARSE] = 'E_PARSE'; $err[E_NOTICE] = 'E_NOTICE'; $err[E_USER_NOTICE] = 'E_USER_NOTICE'; $err[E_STRICT] = 'E_STRICT'; if ( !defined('E_RECOVERABLE_ERROR') ) define('E_RECOVERABLE_ERROR', 4096); $err[E_RECOVERABLE_ERROR] = 'E_RECOVERABLE_ERROR'; if ( !defined('E_DEPRECATED') ) define('E_DEPRECATED', 8192); $err[E_DEPRECATED] = 'E_DEPRECATED'; if ( !defined('E_USER_DEPRECATED') ) define('E_USER_DEPRECATED', 16384); $err[E_USER_DEPRECATED] = 'E_USER_DEPRECATED'; if ( ! empty($prefs['error_reporting_level']) and $prefs['error_reporting_level'] ) { global $tikipath; $errfile = str_replace($tikipath, '', $errfile); switch ($errno) { case E_ERROR: case E_CORE_ERROR: case E_USER_ERROR: case E_COMPILE_ERROR: case E_WARNING: case E_CORE_WARNING: case E_USER_WARNING: case E_COMPILE_WARNING: case E_PARSE: case E_RECOVERABLE_ERROR: if ($prefs['error_reporting_level'] == -1 or $prefs['error_reporting_level'] == 2047 or $prefs['error_reporting_level'] == 2039 or ($prefs['error_reporting_level'] == 1 and $tiki_p_admin == 'y')) { $back = "<div style='padding:4px;border:1px solid #000;background-color:#F66;font-size:10px;'>"; $back.= "<b>PHP (".PHP_VERSION.") ERROR (".$err[$errno]."):</b><br />"; $back.= "<tt><b>File:</b></tt> $errfile<br />"; $back.= "<tt><b>Line:</b></tt> $errline<br />"; $back.= "<tt><b>Type:</b></tt> $errstr"; $back.= "</div>"; $phpErrors[] = $back; } break; case E_STRICT: if ($prefs['error_reporting_level'] == '2047') break; case E_NOTICE: case E_USER_NOTICE: case E_DEPRECATED: case E_USER_DEPRECATED: if ( $prefs['error_reporting_level'] == -1 or $prefs['error_reporting_level'] == '2047' and $tiki_p_admin == 'y' and ! preg_match(THIRD_PARTY_LIBS_PATTERN, $errfile) ) { if ($prefs['smarty_notice_reporting'] != 'y' && strstr($errfile, '.tpl.php')) break; $back = "<div style='padding:4px;border:1px solid #000;background-color:#FF6;font-size:10px;'>"; $back.= "<b>PHP (".PHP_VERSION.") NOTICE ($errno):</b><br />"; $back.= "<tt><b>File:</b></tt> $errfile<br />"; $back.= "<tt><b>Line:</b></tt> $errline<br />"; $back.= "<tt><b>Type:</b></tt> $errstr"; $back.= "</div>"; $phpErrors[] = $back; } default: break; } } } set_error_handler("tiki_error_handling");