REDROOM
PHP 8.2.31
Path:
Logout
Edit File
Size: 8.84 KB
Close
/home/nshryvcy/taramarriagebureau.com/wp-content/plugins/trx_utils/shortcodes/trx_basic/image.php
Text
Base64
<?php /* Theme setup section -------------------------------------------------------------------- */ if (!function_exists('planmyday_sc_image_theme_setup')) { add_action( 'planmyday_action_before_init_theme', 'planmyday_sc_image_theme_setup' ); function planmyday_sc_image_theme_setup() { add_action('planmyday_action_shortcodes_list', 'planmyday_sc_image_reg_shortcodes'); if (function_exists('planmyday_exists_visual_composer') && planmyday_exists_visual_composer()) add_action('planmyday_action_shortcodes_list_vc','planmyday_sc_image_reg_shortcodes_vc'); } } /* Shortcode implementation -------------------------------------------------------------------- */ /* [trx_image id="unique_id" src="image_url" width="width_in_pixels" height="height_in_pixels" title="image's_title" align="left|right"] */ if (!function_exists('planmyday_sc_image')) { function planmyday_sc_image($atts, $content=''){ if (planmyday_in_shortcode_blogger()) return ''; extract(planmyday_html_decode(shortcode_atts(array( // Individual params "title" => "", "align" => "", "shape" => "square", "src" => "", "url" => "", "icon" => "", "link" => "", // Common params "id" => "", "class" => "", "animation" => "", "css" => "", "top" => "", "bottom" => "", "left" => "", "right" => "", "width" => "", "height" => "" ), $atts))); $class .= ($class ? ' ' : '') . planmyday_get_css_position_as_classes($top, $right, $bottom, $left); $css .= planmyday_get_css_dimensions_from_values($width, $height); $src = $src!='' ? $src : $url; if ($src > 0) { $attach = wp_get_attachment_image_src( $src, 'full' ); if (isset($attach[0]) && $attach[0]!='') $src = $attach[0]; } if (!empty($width) || !empty($height)) { $w = !empty($width) && strlen(intval($width)) == strlen($width) ? $width : null; $h = !empty($height) && strlen(intval($height)) == strlen($height) ? $height : null; if ($w || $h) $src = planmyday_get_resized_image_url($src, $w, $h); } if (trim($link)) planmyday_enqueue_popup(); $alt = basename($src); $alt = substr($alt,0,strlen($alt) - 4); $output = empty($src) ? '' : ('<figure' . ($id ? ' id="'.esc_attr($id).'"' : '') . ' class="sc_image ' . ($align && $align!='none' ? ' align' . esc_attr($align) : '') . (!empty($shape) ? ' sc_image_shape_'.esc_attr($shape) : '') . (!empty($class) ? ' '.esc_attr($class) : '') . '"' . (!planmyday_param_is_off($animation) ? ' data-animation="'.esc_attr(planmyday_get_animation_classes($animation)).'"' : '') . ($css!='' ? ' style="'.esc_attr($css).'"' : '') . '>' . (trim($link) ? '<a href="'.esc_url($link).'">' : '') . '<img src="'.esc_url($src).'" alt="'.esc_html($alt).'" />' . (trim($link) ? '</a>' : '') . (trim($title) || trim($icon) ? '<figcaption><span'.($icon ? ' class="'.esc_attr($icon).'"' : '').'></span> ' . ($title) . '</figcaption>' : '') . '</figure>'); return apply_filters('planmyday_shortcode_output', $output, 'trx_image', $atts, $content); } add_shortcode('trx_image', 'planmyday_sc_image'); } /* Register shortcode in the internal SC Builder -------------------------------------------------------------------- */ if ( !function_exists( 'planmyday_sc_image_reg_shortcodes' ) ) { //add_action('planmyday_action_shortcodes_list', 'planmyday_sc_image_reg_shortcodes'); function planmyday_sc_image_reg_shortcodes() { planmyday_sc_map("trx_image", array( "title" => esc_html__("Image", 'trx_utils'), "desc" => wp_kses_data( __("Insert image into your post (page)", 'trx_utils') ), "decorate" => false, "container" => false, "params" => array( "url" => array( "title" => esc_html__("URL for image file", 'trx_utils'), "desc" => wp_kses_data( __("Select or upload image or write URL from other site", 'trx_utils') ), "readonly" => false, "value" => "", "type" => "media", "before" => array( 'sizes' => true // If you want allow user select thumb size for image. Otherwise, thumb size is ignored - image fullsize used ) ), "title" => array( "title" => esc_html__("Title", 'trx_utils'), "desc" => wp_kses_data( __("Image title (if need)", 'trx_utils') ), "value" => "", "type" => "text" ), "icon" => array( "title" => esc_html__("Icon before title", 'trx_utils'), "desc" => wp_kses_data( __('Select icon for the title from Fontello icons set', 'trx_utils') ), "value" => "", "type" => "icons", "options" => planmyday_get_sc_param('icons') ), "align" => array( "title" => esc_html__("Float image", 'trx_utils'), "desc" => wp_kses_data( __("Float image to left or right side", 'trx_utils') ), "value" => "", "type" => "checklist", "dir" => "horizontal", "options" => planmyday_get_sc_param('float') ), "shape" => array( "title" => esc_html__("Image Shape", 'trx_utils'), "desc" => wp_kses_data( __("Shape of the image: square (rectangle) or round", 'trx_utils') ), "value" => "square", "type" => "checklist", "dir" => "horizontal", "options" => array( "square" => esc_html__('Square', 'trx_utils'), "round" => esc_html__('Round', 'trx_utils') ) ), "link" => array( "title" => esc_html__("Link", 'trx_utils'), "desc" => wp_kses_data( __("The link URL from the image", 'trx_utils') ), "value" => "", "type" => "text" ), "width" => planmyday_shortcodes_width(), "height" => planmyday_shortcodes_height(), "top" => planmyday_get_sc_param('top'), "bottom" => planmyday_get_sc_param('bottom'), "left" => planmyday_get_sc_param('left'), "right" => planmyday_get_sc_param('right'), "id" => planmyday_get_sc_param('id'), "class" => planmyday_get_sc_param('class'), "animation" => planmyday_get_sc_param('animation'), "css" => planmyday_get_sc_param('css') ) )); } } /* Register shortcode in the VC Builder -------------------------------------------------------------------- */ if ( !function_exists( 'planmyday_sc_image_reg_shortcodes_vc' ) ) { //add_action('planmyday_action_shortcodes_list_vc', 'planmyday_sc_image_reg_shortcodes_vc'); function planmyday_sc_image_reg_shortcodes_vc() { vc_map( array( "base" => "trx_image", "name" => esc_html__("Image", 'trx_utils'), "description" => wp_kses_data( __("Insert image", 'trx_utils') ), "category" => esc_html__('Content', 'trx_utils'), 'icon' => 'icon_trx_image', "class" => "trx_sc_single trx_sc_image", "content_element" => true, "is_container" => false, "show_settings_on_create" => true, "params" => array( array( "param_name" => "url", "heading" => esc_html__("Select image", 'trx_utils'), "description" => wp_kses_data( __("Select image from library", 'trx_utils') ), "admin_label" => true, "class" => "", "value" => "", "type" => "attach_image" ), array( "param_name" => "align", "heading" => esc_html__("Image alignment", 'trx_utils'), "description" => wp_kses_data( __("Align image to left or right side", 'trx_utils') ), "admin_label" => true, "class" => "", "value" => array_flip(planmyday_get_sc_param('float')), "type" => "dropdown" ), array( "param_name" => "shape", "heading" => esc_html__("Image shape", 'trx_utils'), "description" => wp_kses_data( __("Shape of the image: square or round", 'trx_utils') ), "admin_label" => true, "class" => "", "value" => array( esc_html__('Square', 'trx_utils') => 'square', esc_html__('Round', 'trx_utils') => 'round' ), "type" => "dropdown" ), array( "param_name" => "title", "heading" => esc_html__("Title", 'trx_utils'), "description" => wp_kses_data( __("Image's title", 'trx_utils') ), "admin_label" => true, "class" => "", "value" => "", "type" => "textfield" ), array( "param_name" => "icon", "heading" => esc_html__("Title's icon", 'trx_utils'), "description" => wp_kses_data( __("Select icon for the title from Fontello icons set", 'trx_utils') ), "class" => "", "value" => planmyday_get_sc_param('icons'), "type" => "dropdown" ), array( "param_name" => "link", "heading" => esc_html__("Link", 'trx_utils'), "description" => wp_kses_data( __("The link URL from the image", 'trx_utils') ), "admin_label" => true, "class" => "", "value" => "", "type" => "textfield" ), planmyday_get_vc_param('id'), planmyday_get_vc_param('class'), planmyday_get_vc_param('animation'), planmyday_get_vc_param('css'), planmyday_vc_width(), planmyday_vc_height(), planmyday_get_vc_param('margin_top'), planmyday_get_vc_param('margin_bottom'), planmyday_get_vc_param('margin_left'), planmyday_get_vc_param('margin_right') ) ) ); class WPBakeryShortCode_Trx_Image extends Planmyday_Vc_ShortCodeSingle {} } } ?>
Save
Close
Exit & Reset
Text mode: syntax highlighting auto-detects file type.
Directory Contents
Dirs: 0 × Files: 21
Delete Selected
Select All
Select None
Sort:
Name
Size
Modified
Enable drag-to-move
Name
Size
Perms
Modified
Actions
audio.php
9.81 KB
lrw-r--r--
2025-04-30 03:15:53
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
blogger.php
32.31 KB
lrw-r--r--
2025-04-30 03:15:53
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
call_to_action.php
17.19 KB
lrw-r--r--
2025-04-30 03:15:53
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
columns.php
16.24 KB
lrw-r--r--
2025-04-30 03:15:53
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
content.php
4.86 KB
lrw-r--r--
2025-04-30 03:15:53
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
form.php
21.89 KB
lrw-r--r--
2025-04-30 03:15:53
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
googlemap.php
13.52 KB
lrw-r--r--
2025-04-30 03:15:53
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
image.php
8.84 KB
lrw-r--r--
2025-04-30 03:15:53
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
infobox.php
8.21 KB
lrw-r--r--
2025-04-30 03:15:53
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
line.php
9.61 KB
lrw-r--r--
2025-04-30 03:15:53
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
list.php
13.83 KB
lrw-r--r--
2025-04-30 03:15:53
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
price_block.php
11.59 KB
lrw-r--r--
2025-04-30 03:15:53
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
promo.php
14.41 KB
lrw-r--r--
2025-04-30 03:15:53
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
quote.php
5.83 KB
lrw-r--r--
2025-04-30 03:15:53
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
section.php
25.57 KB
lrw-r--r--
2025-04-30 03:15:53
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
skills.php
33.22 KB
lrw-r--r--
2025-04-30 03:15:53
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
slider.php
37.03 KB
lrw-r--r--
2025-04-30 03:15:53
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
socials.php
12.37 KB
lrw-r--r--
2025-04-30 03:15:53
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
table.php
5.96 KB
lrw-r--r--
2025-04-30 03:15:53
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
title.php
16.30 KB
lrw-r--r--
2025-04-30 03:15:53
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
video.php
14.91 KB
lrw-r--r--
2025-04-30 03:15:53
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).