'; $html .=( $title ) ? '
'; $html .= $string; $html .= ''; $html .= ''; echo $html; } }//function public static function printSysVars($type='all') { $params =& JComponentHelper::getParams( com_EASY_APP_ELKUKU_1 ); //--get debugger type $debug_type = $params->get('ecr_debug_type', 'easy'); switch( $debug_type ) { case 'jdump': //--Test if JDump is installed if( ! file_exists( JPATH_ADMINISTRATOR.DS.'components'.DS.'com_dump'.DS.'helper.php' ) ) { ecrHTML::displayMessage(JText::_('JDump not found'), 'error'); } else { switch($type) { case 'request': dump($_REQUEST, 'REQUEST'); break; case 'backTrace': dumpBacktrace(); break; case 'sysInfo': default: dumpSysinfo(); break; }//switch } case 'easy': echo '
';
switch($type)
{
case 'request':
echo '$_REQUEST';
print_r($_REQUEST);
break;
}//switch
echo '';
echo '