__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
/**
* Joomla! Content Management System
*
* @copyright (C) 2015 Open Source Matters, Inc. <https://www.joomla.org>
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
namespace Joomla\CMS\Document\Renderer\Html;
use Joomla\CMS\Document\DocumentRenderer;
// phpcs:disable PSR1.Files.SideEffects
\defined('JPATH_PLATFORM') or die;
// phpcs:enable PSR1.Files.SideEffects
/**
* HTML document renderer for the document `<head>` element
*
* @since 3.5
*/
class HeadRenderer extends DocumentRenderer
{
/**
* Renders the document head and returns the results as a string
*
* @param string $head (unused)
* @param array $params Associative array of values
* @param string $content The script
*
* @return string The output of the script
*
* @since 3.5
*/
public function render($head, $params = array(), $content = null)
{
$buffer = '';
$buffer .= $this->_doc->loadRenderer('metas')->render($head, $params, $content);
$buffer .= $this->_doc->loadRenderer('styles')->render($head, $params, $content);
$buffer .= $this->_doc->loadRenderer('scripts')->render($head, $params, $content);
return $buffer;
}
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| ComponentRenderer.php | File | 1 KB | 0664 |
|
| HeadRenderer.php | File | 1.24 KB | 0664 |
|
| MessageRenderer.php | File | 2.46 KB | 0664 |
|
| MetasRenderer.php | File | 6.7 KB | 0664 |
|
| ModuleRenderer.php | File | 3.34 KB | 0664 |
|
| ModulesRenderer.php | File | 2.09 KB | 0664 |
|
| ScriptsRenderer.php | File | 10.31 KB | 0664 |
|
| StylesRenderer.php | File | 9.92 KB | 0664 |
|