Documentación GVHIDRA 3.1.5
Referencia del Archivo function.debug.php

Ir al código fuente de este archivo.

Namespaces

namespace  Smarty

Funciones

 smarty_function_debug ($params, &$smarty)

Documentación de las funciones

smarty_function_debug ( params,
&$  smarty 
)

Smarty {debug} function plugin

Type: function
Name: debug
Date: July 1, 2002
Purpose: popup debug window {debug} (Smarty online manual) Monte Ohrt

Versión:
1.0
Parámetros:
array
Smarty
Devuelve:
string output from Smarty::_generate_debug_output()

Definición en la línea 24 del archivo function.debug.php.

{
    if (isset($params['output'])) {
        $smarty->assign('_smarty_debug_output', $params['output']);
    }
    require_once(SMARTY_CORE_DIR . 'core.display_debug_console.php');
    return smarty_core_display_debug_console(null, $smarty);
}