D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
tvinntxo
/
www
/
wp-content
/
plugins
/
mailpoet
/
lib
/
Newsletter
/
Renderer
/
Blocks
/
Filename :
Placeholder.php
back
Copy
<?php declare(strict_types = 1); namespace MailPoet\Newsletter\Renderer\Blocks; if (!defined('ABSPATH')) exit; use MailPoet\WP\Functions as WPFunctions; class Placeholder { /** @var WPFunctions */ private $wp; public function __construct( WPFunctions $wp ) { $this->wp = $wp; } public function render($element): string { $placeholder = $element['placeholder']; $class = $element['class'] ?? ''; $style = $element['style'] ?? ''; return ' <tr> <td class="' . $this->wp->escAttr($class) . '" style="' . $this->wp->escAttr($style) . '"> ' . $this->wp->escHtml($placeholder) . ' </td> </tr>'; } }