';
}
/**
* Show query string
*
* @return string
*/
protected function _compile_uri_string()
{
return "\n\n"
.'';
$fields_displayed = 0;
foreach ($this->_available_sections as $section)
{
if ($this->_compile_{$section} !== FALSE)
{
$func = '_compile_'.$section;
$output .= $this->{$func}();
$fields_displayed++;
}
}
if ($fields_displayed === 0)
{
$output .= '
'
.$this->CI->lang->line('profiler_no_profiles').'
';
}
return $output.'
';
}
}