/
var
/
www
/
vhosts
/
ihelp.ro
/
ajutam.ro
/
wp-content
/
plugins
/
trx_utils
/
shortcodes
/
trx_basic
/
/var/www/vhosts/ihelp.ro/ajutam.ro/wp-content/plugins/trx_utils/shortcodes/trx_basic
mkdir
upload
Name
Size
Mode
Actions
anchor.php
6505
0644
edit
dl
rm
audio.php
10401
0644
edit
dl
rm
blogger.php
34038
0644
edit
dl
rm
br.php
2192
0644
edit
dl
rm
call_to_action.php
17687
0644
edit
dl
rm
chat.php
7204
0644
edit
dl
rm
columns.php
17172
0644
edit
dl
rm
content.php
5246
0644
edit
dl
rm
events.php
32946
0644
edit
dl
rm
form.php
25504
0644
edit
dl
rm
give.php
25787
0644
edit
dl
rm
googlemap.php
14010
0644
edit
dl
rm
hide.php
2488
0644
edit
dl
rm
image.php
9470
0644
edit
dl
rm
infobox.php
8710
0644
edit
dl
rm
intro.php
18718
0644
edit
dl
rm
line.php
10195
0644
edit
dl
rm
list.php
14609
0644
edit
dl
rm
price_block.php
12241
0644
edit
dl
rm
promo.php
15176
0644
edit
dl
rm
quote.php
6266
0644
edit
dl
rm
reviews.php
5079
0644
edit
dl
rm
search.php
8518
0644
edit
dl
rm
section.php
27083
0644
edit
dl
rm
skills.php
34872
0644
edit
dl
rm
slider.php
38659
0644
edit
dl
rm
socials.php
13118
0644
edit
dl
rm
support.clients.php
42769
0644
edit
dl
rm
support.services.php
46778
0644
edit
dl
rm
support.team.php
53876
0644
edit
dl
rm
support.testimonials.php
41669
0644
edit
dl
rm
table.php
6415
0644
edit
dl
rm
title.php
16329
0644
edit
dl
rm
twitter.php
19109
0644
edit
dl
rm
video.php
15728
0644
edit
dl
rm
woocommerce.php
73656
0644
edit
dl
rm
Edit:
/var/www/vhosts/ihelp.ro/ajutam.ro/wp-content/plugins/trx_utils/shortcodes/trx_basic/promo.php
(15176B)
<?php /* Theme setup section -------------------------------------------------------------------- */ if (!function_exists('charity_is_hope_sc_promo_theme_setup')) { add_action( 'charity_is_hope_action_before_init_theme', 'charity_is_hope_sc_promo_theme_setup' ); function charity_is_hope_sc_promo_theme_setup() { add_action('charity_is_hope_action_shortcodes_list', 'charity_is_hope_sc_promo_reg_shortcodes'); if (function_exists('charity_is_hope_exists_visual_composer') && charity_is_hope_exists_visual_composer()) add_action('charity_is_hope_action_shortcodes_list_vc','charity_is_hope_sc_promo_reg_shortcodes_vc'); } } /* Shortcode implementation -------------------------------------------------------------------- */ if (!function_exists('charity_is_hope_sc_promo')) { function charity_is_hope_sc_promo($atts, $content=null){ if (charity_is_hope_in_shortcode_blogger()) return ''; extract(charity_is_hope_html_decode(shortcode_atts(array( // Individual params "size" => "large", "align" => "none", "image" => "", "image_position" => "left", "image_width" => "50%", "text_margins" => '', "text_align" => "left", "scheme" => "", "title" => "", "subtitle" => "", "description" => "", "link_caption" => esc_html__('Learn more', 'trx_utils'), "link" => '', // Common params "id" => "", "class" => "", "animation" => "", "css" => "", "width" => "", "height" => "", "top" => "", "bottom" => "", "left" => "", "right" => "" ), $atts))); if ($image > 0) { $attach = wp_get_attachment_image_src($image, 'full'); if (isset($attach[0]) && $attach[0]!='') $image = $attach[0]; } if ($image == '') { $image_width = '0%'; $text_margins = ''; } $width = charity_is_hope_prepare_css_value($width); $height = charity_is_hope_prepare_css_value($height); $class .= ($class ? ' ' : '') . charity_is_hope_get_css_position_as_classes($top, $right, $bottom, $left); $css .= charity_is_hope_get_css_dimensions_from_values($width, $height); $css_image = (!empty($image) ? 'background-image:url(' . esc_url($image) . ');' : '') . (!empty($image_width) ? 'width:'.trim($image_width).';' : '') . (!empty($image_position) ? $image_position.': 0;' : ''); $text_width = charity_is_hope_strpos($image_width, '%')!==false ? (100 - (int) str_replace('%', '', $image_width)).'%' : 'calc(100%-'.trim($image_width).')'; $css_text = 'width: '.esc_attr($text_width).'; float: '.($image_position=='left' ? 'right' : 'left').';'.(!empty($text_margins) ? ' margin:'.esc_attr($text_margins).';' : ''); $output = '<div' . ($id ? ' id="'.esc_attr($id).'"' : '') . ' class="sc_promo' . ($class ? ' ' . esc_attr($class) : '') . ($scheme && !charity_is_hope_param_is_off($scheme) && !charity_is_hope_param_is_inherit($scheme) ? ' scheme_'.esc_attr($scheme) : '') . ($size ? ' sc_promo_size_'.esc_attr($size) : '') . ($align && $align!='none' ? ' align'.esc_attr($align) : '') . (empty($image) ? ' no_image' : '') . '"' . (!charity_is_hope_param_is_off($animation) ? ' data-animation="'.esc_attr(charity_is_hope_get_animation_classes($animation)).'"' : '') . ($css ? 'style="'.esc_attr($css).'"' : '') .'>' . '<div class="sc_promo_inner">' . (!empty($image) ? '<div class="sc_promo_image" style="'.esc_attr($css_image).'"></div>' : '') . '<div class="sc_promo_block sc_align_'.esc_attr($text_align).'" style="'.esc_attr($css_text).'">' . '<div class="sc_promo_block_inner">' . (!empty($subtitle) ? '<h6 class="sc_promo_subtitle sc_item_subtitle">' . trim(charity_is_hope_strmacros($subtitle)) . '</h6>' : '') . (!empty($title) ? '<h2 class="sc_promo_title sc_item_title' . (empty($description) ? ' sc_item_title_without_descr' : ' sc_item_title_without_descr') . '">' . trim(charity_is_hope_strmacros($title)) . '</h2>' : '') . (!empty($description) ? '<div class="sc_promo_descr sc_item_descr">' . trim(charity_is_hope_strmacros($description)) . '</div>' : '') . (!empty($content) ? '<div class="sc_promo_content">'.do_shortcode($content).'</div>' : '') . (!empty($link) ? '<div class="sc_promo_button sc_item_button">'.charity_is_hope_do_shortcode('[trx_button size="large" link="'.esc_url($link).'" icon="icon-arrow"]'.esc_html($link_caption).'[/trx_button]').'</div>' : '') . '</div>' . '</div>' . '</div>' . '</div>'; return apply_filters('charity_is_hope_shortcode_output', $output, 'trx_promo', $atts, $content); } add_shortcode('trx_promo', 'charity_is_hope_sc_promo'); } /* Register shortcode in the internal SC Builder -------------------------------------------------------------------- */ if ( !function_exists( 'charity_is_hope_sc_promo_reg_shortcodes' ) ) { //add_action('charity_is_hope_action_shortcodes_list', 'charity_is_hope_sc_promo_reg_shortcodes'); function charity_is_hope_sc_promo_reg_shortcodes() { charity_is_hope_sc_map("trx_promo", array( "title" => esc_html__("Promo", 'trx_utils'), "desc" => wp_kses_data( __("Insert promo diagramm in your page (post)", 'trx_utils') ), "decorate" => true, "container" => false, "params" => array( "align" => array( "title" => esc_html__("Alignment of the promo block", 'trx_utils'), "desc" => wp_kses_data( __("Align whole promo block to left or right side of the page or parent container", 'trx_utils') ), "value" => "", "type" => "checklist", "dir" => "horizontal", "options" => charity_is_hope_get_sc_param('float') ), "size" => array( "title" => esc_html__("Size of the promo block", 'trx_utils'), "desc" => wp_kses_data( __("Size of the promo block: large - one in the row, small - insize two or greater columns", 'trx_utils') ), "value" => "large", "type" => "switch", "options" => array( 'small' => esc_html__('Small', 'trx_utils'), 'large' => esc_html__('Large', 'trx_utils') ) ), "image" => array( "title" => esc_html__("Image URL", 'trx_utils'), "desc" => wp_kses_data( __("Select the promo image from the library for this section", 'trx_utils') ), "readonly" => false, "value" => "", "type" => "media" ), "image_position" => array( "title" => esc_html__("Image position", 'trx_utils'), "desc" => wp_kses_data( __("Place the image to the left or to the right from the text block", 'trx_utils') ), "value" => "left", "type" => "checklist", "dir" => "horizontal", "options" => charity_is_hope_get_sc_param('hpos') ), "image_width" => array( "title" => esc_html__("Image width", 'trx_utils'), "desc" => wp_kses_data( __("Width (in pixels or percents) of the block with image", 'trx_utils') ), "value" => "50%", "type" => "text" ), "text_margins" => array( "title" => esc_html__("Text margins", 'trx_utils'), "desc" => wp_kses_data( __("Margins for the all sides of the text block (Example: 30px 10px 40px 30px = top right botton left OR 30px = equal for all sides)", 'trx_utils') ), "value" => "", "type" => "text" ), "text_align" => array( "title" => esc_html__("Text alignment", 'trx_utils'), "desc" => wp_kses_data( __("Align the text inside the block", 'trx_utils') ), "value" => "left", "type" => "checklist", "dir" => "horizontal", "options" => charity_is_hope_get_sc_param('align') ), "scheme" => array( "title" => esc_html__("Color scheme", 'trx_utils'), "desc" => wp_kses_data( __("Select color scheme for the section with text", 'trx_utils') ), "value" => "", "type" => "checklist", "options" => charity_is_hope_get_sc_param('schemes') ), "title" => array( "title" => esc_html__("Title", 'trx_utils'), "desc" => wp_kses_data( __("Title for the block", 'trx_utils') ), "value" => "", "type" => "text" ), "subtitle" => array( "title" => esc_html__("Subtitle", 'trx_utils'), "desc" => wp_kses_data( __("Subtitle for the block", 'trx_utils') ), "value" => "", "type" => "text" ), "description" => array( "title" => esc_html__("Description", 'trx_utils'), "desc" => wp_kses_data( __("Short description for the block", 'trx_utils') ), "value" => "", "type" => "textarea" ), "link" => array( "title" => esc_html__("Button URL", 'trx_utils'), "desc" => wp_kses_data( __("Link URL for the button at the bottom of the block", 'trx_utils') ), "value" => "", "type" => "text" ), "link_caption" => array( "title" => esc_html__("Button caption", 'trx_utils'), "desc" => wp_kses_data( __("Caption for the button at the bottom of the block", 'trx_utils') ), "value" => "", "type" => "text" ), "width" => charity_is_hope_shortcodes_width(), "height" => charity_is_hope_shortcodes_height(), "top" => charity_is_hope_get_sc_param('top'), "bottom" => charity_is_hope_get_sc_param('bottom'), "left" => charity_is_hope_get_sc_param('left'), "right" => charity_is_hope_get_sc_param('right'), "id" => charity_is_hope_get_sc_param('id'), "class" => charity_is_hope_get_sc_param('class'), "animation" => charity_is_hope_get_sc_param('animation'), "css" => charity_is_hope_get_sc_param('css') ) )); } } /* Register shortcode in the VC Builder -------------------------------------------------------------------- */ if ( !function_exists( 'charity_is_hope_sc_promo_reg_shortcodes_vc' ) ) { //add_action('charity_is_hope_action_shortcodes_list_vc', 'charity_is_hope_sc_promo_reg_shortcodes_vc'); function charity_is_hope_sc_promo_reg_shortcodes_vc() { vc_map( array( "base" => "trx_promo", "name" => esc_html__("Promo", 'trx_utils'), "description" => wp_kses_data( __("Insert promo block", 'trx_utils') ), "category" => esc_html__('Content', 'trx_utils'), 'icon' => 'icon_trx_promo', "class" => "trx_sc_collection trx_sc_promo", "content_element" => true, "is_container" => true, "show_settings_on_create" => true, "params" => array( array( "param_name" => "align", "heading" => esc_html__("Alignment of the promo block", 'trx_utils'), "description" => wp_kses_data( __("Align whole promo block to left or right side of the page or parent container", 'trx_utils') ), "class" => "", "std" => 'none', "value" => array_flip(charity_is_hope_get_sc_param('float')), "type" => "dropdown" ), array( "param_name" => "size", "heading" => esc_html__("Size of the promo block", 'trx_utils'), "description" => wp_kses_data( __("Size of the promo block: large - one in the row, small - insize two or greater columns", 'trx_utils') ), "class" => "", "value" => array(esc_html__('Use small block', 'trx_utils') => 'small'), "type" => "checkbox" ), array( "param_name" => "image", "heading" => esc_html__("Image URL", 'trx_utils'), "description" => wp_kses_data( __("Select the promo image from the library for this section", 'trx_utils') ), "class" => "", "value" => "", "type" => "attach_image" ), array( "param_name" => "image_position", "heading" => esc_html__("Image position", 'trx_utils'), "description" => wp_kses_data( __("Place the image to the left or to the right from the text block", 'trx_utils') ), "class" => "", "std" => 'left', "value" => array_flip(charity_is_hope_get_sc_param('hpos')), "type" => "dropdown" ), array( "param_name" => "image_width", "heading" => esc_html__("Image width", 'trx_utils'), "description" => wp_kses_data( __("Width (in pixels or percents) of the block with image", 'trx_utils') ), "value" => '', "std" => "50%", "type" => "textfield" ), array( "param_name" => "text_margins", "heading" => esc_html__("Text margins", 'trx_utils'), "description" => wp_kses_data( __("Margins for the all sides of the text block (Example: 30px 10px 40px 30px = top right botton left OR 30px = equal for all sides)", 'trx_utils') ), "value" => '', "type" => "textfield" ), array( "param_name" => "text_align", "heading" => esc_html__("Text alignment", 'trx_utils'), "description" => wp_kses_data( __("Align text to the left or to the right side inside the block", 'trx_utils') ), "class" => "", "std" => 'left', "value" => array_flip(charity_is_hope_get_sc_param('align')), "type" => "dropdown" ), array( "param_name" => "scheme", "heading" => esc_html__("Color scheme", 'trx_utils'), "description" => wp_kses_data( __("Select color scheme for the section with text", 'trx_utils') ), "class" => "", "value" => array_flip(charity_is_hope_get_sc_param('schemes')), "type" => "dropdown" ), array( "param_name" => "title", "heading" => esc_html__("Title", 'trx_utils'), "description" => wp_kses_data( __("Title for the block", 'trx_utils') ), "admin_label" => true, "group" => esc_html__('Captions', 'trx_utils'), "class" => "", "value" => "", "type" => "textfield" ), array( "param_name" => "subtitle", "heading" => esc_html__("Subtitle", 'trx_utils'), "description" => wp_kses_data( __("Subtitle for the block", 'trx_utils') ), "group" => esc_html__('Captions', 'trx_utils'), "class" => "", "value" => "", "type" => "textfield" ), array( "param_name" => "description", "heading" => esc_html__("Description", 'trx_utils'), "description" => wp_kses_data( __("Description for the block", 'trx_utils') ), "group" => esc_html__('Captions', 'trx_utils'), "class" => "", "value" => "", "type" => "textarea" ), array( "param_name" => "link", "heading" => esc_html__("Button URL", 'trx_utils'), "description" => wp_kses_data( __("Link URL for the button at the bottom of the block", 'trx_utils') ), "group" => esc_html__('Captions', 'trx_utils'), "class" => "", "value" => "", "type" => "textfield" ), array( "param_name" => "link_caption", "heading" => esc_html__("Button caption", 'trx_utils'), "description" => wp_kses_data( __("Caption for the button at the bottom of the block", 'trx_utils') ), "group" => esc_html__('Captions', 'trx_utils'), "class" => "", "value" => "", "type" => "textfield" ), charity_is_hope_get_vc_param('id'), charity_is_hope_get_vc_param('class'), charity_is_hope_get_vc_param('animation'), charity_is_hope_get_vc_param('css'), charity_is_hope_vc_width(), charity_is_hope_vc_height(), charity_is_hope_get_vc_param('margin_top'), charity_is_hope_get_vc_param('margin_bottom'), charity_is_hope_get_vc_param('margin_left'), charity_is_hope_get_vc_param('margin_right') ) ) ); class WPBakeryShortCode_Trx_Promo extends Charity_Is_Hope_VC_ShortCodeCollection {} } } ?>
Save
cmd:
run