12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Framework\View\Page\Config;
- /**
- * Interface RendererInterface
- *
- * @package Magento\Framework\View\Page\Config
- */
- interface RendererInterface
- {
- /**
- * Render Element Attributes
- *
- * @param string $elementType
- *
- * @return string
- */
- public function renderElementAttributes($elementType);
- /**
- * Render Head Content
- *
- * @return string
- */
- public function renderHeadContent();
- /**
- * Render Title
- *
- * @return string
- */
- public function renderTitle();
- /**
- * Render Metadata
- *
- * @return string
- */
- public function renderMetadata();
- /**
- * Prepare Favicon
- *
- * @return void
- */
- public function prepareFavicon();
- /**
- * Returns rendered HTML for all Assets (CSS before)
- *
- * @param array $resultGroups
- *
- * @return string
- */
- public function renderAssets($resultGroups = []);
- }
|