123456789101112131415161718192021222324252627282930313233 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Framework\View;
- /**
- * Interface RenderInterface
- *
- * @api
- * @since 100.0.2
- */
- interface RenderInterface
- {
- /**
- * Render template
- *
- * @param string $template
- * @param array $data
- * @return string
- */
- public function renderTemplate($template, array $data);
- /**
- * Render container
- *
- * @param string $content
- * @param array $containerInfo
- * @return string
- */
- public function renderContainer($content, array $containerInfo = []);
- }
|