HEX
Server: nginx/1.27.1
System: Linux in-3 5.15.0-161-generic #171-Ubuntu SMP Sat Oct 11 08:17:01 UTC 2025 x86_64
User: ivenus-clone (3297)
PHP: 7.4.33
Disabled: exec,passthru,shell_exec,system,proc_open,popen,parse_ini_file,show_source
Upload Files
File: /storage/v4513/tepnot/public_html/wp-content/plugins/newsletter/emails/blocks/giphy/block.php
<?php
/*
 * Name: Giphy
 * Section: content
 * Description: Add a Giphy image
 *
 */

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

$defaults = array(
    'block_padding_top'=>15,
    'block_padding_bottom'=>15,
    'block_padding_left'=>0,
    'block_padding_right'=>0,
    'block_background'=>'',
    'giphy_url' => ''
);

$options = array_merge($defaults, $options);

?>
<style>
    .image {
        display: inline-block;
        max-width: 100%!important;
        height: auto!important;
        font-size: 0;
    }
</style>
<table width="100%" border="0" cellpadding="0" cellspacing="0" class="responsive" role="presentation">
    <tr>
        <td align="center">
            <img src="<?php echo esc_attr($options['giphy_url']) ?>" inline-class="image">
        </td>
    </tr>
</table>