REDROOM
PHP 8.2.31
Path:
Logout
Edit File
Size: 2.71 KB
Close
/home/nshryvcy/blissfulnepal.com/wp-content/plugins/newsletter/emails/blocks/image/block.php
Text
Base64
<?php /* * Name: Single image * Section: content * Description: A single image with link */ /** @var array $options */ /** @var array $composer */ $defaults = array( 'image' => '', 'image-alt' => '', 'image_alt' => '', 'url' => '', 'width' => 0, 'align' => 'center', 'block_background' => '', 'block_padding_left' => 0, 'block_padding_right' => 0, 'block_padding_bottom' => 15, 'block_padding_top' => 15 ); $options = array_merge($defaults, $options); // Migration if (isset($options['image-alt']) && empty($options['image_alt'])) { $options['image_alt'] = $options['image-alt']; } // Migration end if (empty($options['image']['id'])) { if (!empty($options['image-url'])) { $media = new TNP_Media(); $media->url = $options['image-url']; } else { $media = new TNP_Media(); // A placeholder can be set by a preset and it is kept indefinitely if (!empty($options['placeholder'])) { $media->url = $options['placeholder']; $media->width = $composer['width']; $media->height = 250; } else { $media->url = 'https://source.unsplash.com/1200x500/daily'; $media->width = $composer['width']; $media->height = 250; } } } else { $media = tnp_resize_2x($options['image']['id'], [$composer['width'], 0]); // Should never happen but... it happens if (!$media) { echo 'The selected media file cannot be processed'; return; } else { $media->set_width($composer['content_width']); } } if (!empty($options['width'])) { $media->set_width($options['width']); } $media->link = $options['url']; $media->alt = $options['image_alt']; ?> <table width="100%" cellpadding="0" cellspacing="0" border="0" width="100%" role="presentation"> <tr> <td align="<?php echo esc_attr($options['align']); ?>"> <?php if ($media->link) { ?> <a href="<?php echo esc_attr($media->link); ?>" target="_blank" rel="noopener nofollow" style="display: block; font-size: 0; text-decoration: none; line-height: normal!important"> <?php } ?> <img src="<?php echo esc_attr($media->url); ?>" width="<?php echo esc_attr($media->width); ?>" <?php echo $media->height ? 'height="' . esc_attr($media->height) . '"' : ''; ?> alt="<?php echo esc_attr($media->alt); ?>" border="0" style="display: block; height: auto; max-width: <?php echo esc_attr($media->width); ?>px !important; width: 100%; padding: 0; border: 0; font-size: 12px"> <?php if ($media->link) { ?> </a> <?php } ?> </td> </tr> </table>
Save
Close
Exit & Reset
Text mode: syntax highlighting auto-detects file type.
Directory Contents
Dirs: 0 × Files: 3
Delete Selected
Select All
Select None
Sort:
Name
Size
Modified
Enable drag-to-move
Name
Size
Perms
Modified
Actions
block.php
2.71 KB
lrw-r--r--
2026-06-03 14:57:28
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
icon.png
3.98 KB
lrw-r--r--
2026-06-03 14:57:28
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
options.php
1.57 KB
lrw-r--r--
2026-06-03 14:57:28
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
Zip Selected
If ZipArchive is unavailable, a
.tar
will be created (no compression).