PHP 8.2.31
Preview: block.php Size: 1.33 KB
/home/nshryvcy/blissfulnepal.com/wp-content/plugins/newsletter/emails/blocks/heading/block.php

<?php
/*
 * Name: Heading
 * Section: content
 * Description: Section title
 */

/** @var array $options */
/** @var array $composer */
/** @var string $dir */

$defaults = array(
    'text' => 'An Awesome Title',
    'align' => 'center',
    'font_family' => '',
    'font_size' => '',
    'font_color' => '',
    'font_weight' => '',
    'block_padding_left' => 15,
    'block_padding_right' => 15,
    'block_padding_bottom' => 15,
    'block_padding_top' => 15,
    'block_background' => '',
    'block_background_wide' => '0'
);
$options = array_merge($defaults, $options);

$title_style = TNP_Composer::get_title_style($options, '', $composer);
$options['text'] = strip_tags($options['text'], '<br><span><b><strong><i><em>')
?>

<style>
    .title {
        <?php $title_style->echo_css(); ?>
        padding: 0;
        line-height: 130% !important;
        letter-spacing: normal;
    }
    .title-td {
        text-align: <?php echo esc_html($options['align']); ?>;
    }
</style>

<table border="0" cellspacing="0" cellpadding="0" width="100%" role="presentation">
    <tr>
        <td align="<?php echo esc_attr($options['align']) ?>" valign="middle" dir="<?php echo $dir; ?>" inline-class="title-td">
            <div inline-class="title" role="heading" aria-level="1"><?php echo wp_kses_post($options['text']); ?></div>
        </td>
    </tr>
</table>

Directory Contents

Dirs: 0 × Files: 3

Name Size Perms Modified Actions
1.33 KB lrw-r--r-- 2026-06-03 14:57:28
Edit Download
3.92 KB lrw-r--r-- 2026-06-03 14:57:28
Edit Download
1.08 KB lrw-r--r-- 2026-06-03 14:57:28
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).