yiiDebugConfig::formatArrayAsHtml PHP Méthode

formatArrayAsHtml() protected static méthode

protected static formatArrayAsHtml ( $id, $values, $highlight = false )
    protected static function formatArrayAsHtml($id, $values, $highlight = false)
    {
        $id = ucfirst(strtolower($id));
        return '
		<div style="text-align: left" class="yiiDebugInfoList">
		<h2> <a href="#" onclick="yiiWebDebugToggleVisible(\'yiiWDCFG' . $id . '\'); return false;">+</a>' . $id . '</h2>' . '<div id="yiiWDCFG' . $id . '" style="display: none;"><pre>' . arrayDumper::dump($values, 10, $highlight, !empty(self::$_config['yamlStyle'])) . '</pre></div></div>';
    }