mirror of
https://github.com/Sarjuuk/aowow.git
synced 2025-11-29 15:58:16 +08:00
features: - tool - Maps: * finally supports multi-layered zones * should also support icons if needed (questgiver, ect) - tool - Item Comparison: * fully functional (yes, that includes heirlooms and items with random props) * may throw a minor js-error if using arrow-keys/esc/ret in input-fields in the LightboxPopus (but wowhead does also) * icons for prismatic sockets are not displayed if no other sockets are present (calculation is correct though) * modelviewer will still 'call home' - tool - Talent Calculator: * got rid of a VERY dirty hack for the icons (they are now supplied as texture, not laoded one at a time) * glyphs should also be a bit more informative * talent data is pulled from static file, that should a) speed up load and b) prevent lockups if it cant be generated on the fly * you can now set the level for your build, which affects available talent points, glyphs and glyph-slots - tool - Pet Calculator: * initial implementation; basically the same as the Talent Calculator - general concept changed: * dropped ajax.php; json is now supplied by the appropriate page if &json is appended to the url * search.php and opensearch.php are being merged; again, output will depend on the appended parameter (&openserach, &json) * data included via data.php will be static and assembled only on installation and when the database changes (should speed up load) * locale strings are now in a single file instead of being split up to the template * still getting rid of criss-cross-includes, global variables and string-defines
91 lines
2.8 KiB
PHP
91 lines
2.8 KiB
PHP
<?php
|
|
/**
|
|
* Smarty plugin
|
|
* @package Smarty
|
|
* @subpackage plugins
|
|
*/
|
|
|
|
|
|
/**
|
|
* Smarty debug_print_var modifier plugin
|
|
*
|
|
* Type: modifier<br>
|
|
* Name: debug_print_var<br>
|
|
* Purpose: formats variable contents for display in the console
|
|
* @link http://smarty.php.net/manual/en/language.modifier.debug.print.var.php
|
|
* debug_print_var (Smarty online manual)
|
|
* @author Monte Ohrt <monte at ohrt dot com>
|
|
* @param array|object
|
|
* @param integer
|
|
* @param integer
|
|
* @return string
|
|
*/
|
|
function smarty_modifier_debug_print_var($var, $depth = 0, $length = 4000)
|
|
{
|
|
$_replace = array(
|
|
// "\n" => '<i>\n</i>',
|
|
// "\r" => '<i>\r</i>',
|
|
// "\t" => '<i>\t</i>'
|
|
);
|
|
|
|
switch (gettype($var)) {
|
|
case 'array' :
|
|
$results = '<b>Array (' . count($var) . ')</b>';
|
|
foreach ($var as $curr_key => $curr_val) {
|
|
$results .= '<br>' . str_repeat(' ', $depth * 2)
|
|
. '<b>' . strtr($curr_key, $_replace) . '</b> => '
|
|
. smarty_modifier_debug_print_var($curr_val, ++$depth, $length);
|
|
$depth--;
|
|
}
|
|
break;
|
|
case 'object' :
|
|
$object_vars = get_object_vars($var);
|
|
$results = '<b>' . get_class($var) . ' Object (' . count($object_vars) . ')</b>';
|
|
foreach ($object_vars as $curr_key => $curr_val) {
|
|
$results .= '<br>' . str_repeat(' ', $depth * 2)
|
|
. '<b> ->' . strtr($curr_key, $_replace) . '</b> = '
|
|
. smarty_modifier_debug_print_var($curr_val, ++$depth, $length);
|
|
$depth--;
|
|
}
|
|
break;
|
|
case 'boolean' :
|
|
case 'NULL' :
|
|
case 'resource' :
|
|
if (true === $var) {
|
|
$results = 'true';
|
|
} elseif (false === $var) {
|
|
$results = 'false';
|
|
} elseif (null === $var) {
|
|
$results = 'null';
|
|
} else {
|
|
$results = htmlspecialchars((string) $var);
|
|
}
|
|
$results = '<i>' . $results . '</i>';
|
|
break;
|
|
case 'integer' :
|
|
case 'float' :
|
|
$results = htmlspecialchars((string) $var);
|
|
break;
|
|
case 'string' :
|
|
$results = strtr($var, $_replace);
|
|
if (strlen($var) > $length ) {
|
|
$results = substr($var, 0, $length - 3) . '...';
|
|
}
|
|
$results = htmlspecialchars('"' . $results . '"');
|
|
break;
|
|
case 'unknown type' :
|
|
default :
|
|
$results = strtr((string) $var, $_replace);
|
|
if (strlen($results) > $length ) {
|
|
$results = substr($results, 0, $length - 3) . '...';
|
|
}
|
|
$results = htmlspecialchars($results);
|
|
}
|
|
|
|
return $results;
|
|
}
|
|
|
|
/* vim: set expandtab: */
|
|
|
|
?>
|