HEX
Server: Apache
System: Linux server1.panigaletech.com 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64
User: ubuntu (1000)
PHP: 7.4.30
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/dev.captainschairit.com/wp-content/plugins/newsletter/emails/blocks/header/block.php
<?php
/*
 * Name: Header
 * Section: header
 * Description: Default header with company info
 */

$default_options = array(
    'font_family' => $font_family,
    'font_size' => 14,
    'font_color' => '#444444',
    'font_weight' => 'normal',
    'block_background' => '#ffffff',
    'block_padding_top'=>15,
    'block_padding_bottom'=>15,
    'block_padding_left'=>15,
    'block_padding_right'=>15
);
$options = array_merge($default_options, $options);

if (empty($info['header_logo']['id'])) {
    $image = false;
} else {
    $image = tnp_media_resize($info['header_logo']['id'], array(200, 80));
    if (is_wp_error($image)) {
        $image = false;
    }
}

$empty = empty($info['header_logo']['id']) && empty($info['header_sub']) && empty($info['header_title']);

?>

<?php if ($empty) { ?>
<p>Please, set your company info.</p>
<?php } else { ?>
<style>
    .header-text {
        padding: 10px; 
        text-align: right; 
        font-size: <?php echo $options['font_size'] ?>px; 
        font-family: <?php echo $options['font_family'] ?>; 
        font-weight: <?php echo $options['font_weight'] ?>; 
        color: <?php echo $options['font_color'] ?>;
    }
    .header-logo {
        font-family: <?php echo $options['font_family'] ?>; 
        font-size: <?php echo $options['font_size']*1.1 ?>px; 
        line-height: normal;
        font-weight: <?php echo $options['font_weight'] ?>;
        color: <?php echo $options['font_color'] ?>;
    }
</style>

    <table border="0" cellpadding="0" cellspacing="0" width="100%">
        <tr>
			<?php if ( $image ) { ?>
            <td align="left" width="50%" inline-class="header-logo">
                <a href="#" target="_blank">
                    <img alt="<?php echo esc_attr( $info['header_title'] ) ?>" src="<?php echo $image ?>"
                         style="display: block; max-width: 100%" border="0">
                </a>
				<?php } else { ?>
            <td align="left" width="50%" inline-class="heading-text"
                style="padding: 5px; font-size: 24px; font-family: Helvetica, Arial, sans-serif; font-weight: bold; color: #444444;">
				<?php echo esc_attr( $info['header_title'] ) ?>
				<?php } ?>
            </td>
            <td width="50%" align="right" class="mobile-hide" inline-class="header-text">
				<?php echo $info['header_sub'] ?>
            </td>
        </tr>
    </table>

<?php } ?>