| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- <?php
- namespace MailPoet\Form\Block;
- if (!defined('ABSPATH')) exit;
- use MailPoet\WP\Functions as WPFunctions;
- class Paragraph {
- /** @var WPFunctions */
- private $wp;
- public function __construct(
- WPFunctions $wp
- ) {
- $this->wp = $wp;
- }
- public function render(array $block): string {
- $content = ($block['params']['content'] ?? '');
- return $this->wrapContent($content, $block);
- }
- private function wrapContent(string $content, array $block): string {
- $attributes = $this->renderAttributes($block);
- $openTag = $this->getOpenTag($attributes);
- return $openTag
- . $content
- . "</p>";
- }
- private function getOpenTag(array $attributes): string {
- if (empty($attributes)) {
- return "<p>";
- }
- return "<p " . join(' ', $attributes) . ">";
- }
- private function renderAttributes(array $block): array {
- $result = [];
- $result[] = $this->renderClass($block);
- $result[] = $this->renderStyle($block);
- $result = array_filter($result, function ($attribute) {
- return $attribute !== null;
- });
- return $result;
- }
- private function renderClass(array $block) {
- $classes = ['mailpoet_form_paragraph'];
- if (isset($block['params']['class_name'])) {
- $classes[] = $block['params']['class_name'];
- }
- if (isset($block['params']['drop_cap']) && $block['params']['drop_cap'] === '1') {
- $classes[] = 'has-drop-cap';
- }
- if (!empty($block['params']['background_color'])) {
- $classes[] = 'mailpoet-has-background-color';
- }
- if (!empty($block['params']['font_size'])) {
- $classes[] = 'mailpoet-has-font-size';
- }
- if (empty($classes)) {
- return null;
- }
- return 'class="'
- . $this->wp->escAttr(join(' ', $classes))
- . '"';
- }
- private function renderStyle(array $block) {
- $styles = [];
- if (!empty($block['params']['background_color'])) {
- $styles[] = 'background-color: ' . $block['params']['background_color'];
- }
- if (!empty($block['params']['align'])) {
- $styles[] = 'text-align: ' . $block['params']['align'];
- }
- if (!empty($block['params']['text_color'])) {
- $styles[] = 'color: ' . $block['params']['text_color'];
- }
- if (!empty($block['params']['font_size'])) {
- $styles[] = 'font-size: ' . $block['params']['font_size'] . 'px';
- }
- if (!empty($block['params']['line_height'])) {
- $styles[] = 'line-height: ' . $block['params']['line_height'];
- }
- if (empty($styles)) {
- return null;
- }
- return 'style="'
- . $this->wp->escAttr(join('; ', $styles))
- . '"';
- }
- }
|