/home/nbcgowuy/kdosheleads.com/wp-content/themes/marketo/inc/shortcode/xs-image.php
<?php
namespace Elementor;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
class Xs_Image extends Widget_Base {
public function get_name() {
return 'xs-image';
}
public function get_title() {
return __( 'Marketo Image', 'marketo' );
}
public function get_icon() {
return 'eicon-image-rollover';
}
/**
* Get widget categories.
*
* Retrieve the list of categories the image widget belongs to.
*
* Used to determine where to display the widget in the editor.
*
* @since 2.0.0
* @access public
*
* @return array Widget categories.
*/
public function get_categories() {
return [ 'marketo-elements' ];
}
protected function register_controls() {
$this->start_controls_section(
'section_image',
[
'label' => esc_html__( 'Image', 'marketo' ),
]
);
$this->add_control(
'image',
[
'label' => esc_html__( 'Choose Image', 'marketo' ),
'type' => Controls_Manager::MEDIA,
'dynamic' => [
'active' => true,
],
'default' => [
'url' => Utils::get_placeholder_image_src(),
],
]
);
$this->add_group_control(
Group_Control_Image_Size::get_type(),
[
'name' => 'image', // Usage: `{name}_size` and `{name}_custom_dimension`, in this case `image_size` and `image_custom_dimension`.
'default' => 'large',
'separator' => 'none',
]
);
$this->add_responsive_control(
'align',
[
'label' => esc_html__( 'Alignment', 'marketo' ),
'type' => Controls_Manager::CHOOSE,
'options' => [
'left' => [
'title' => esc_html__( 'Left', 'marketo' ),
'icon' => 'fa fa-align-left',
],
'center' => [
'title' => esc_html__( 'Center', 'marketo' ),
'icon' => 'fa fa-align-center',
],
'right' => [
'title' => esc_html__( 'Right', 'marketo' ),
'icon' => 'fa fa-align-right',
],
],
'selectors' => [
'{{WRAPPER}}' => 'text-align: {{VALUE}};',
],
]
);
$this->add_control(
'link_to',
[
'label' => esc_html__( 'Link to', 'marketo' ),
'type' => Controls_Manager::SELECT,
'default' => 'none',
'options' => [
'none' => esc_html__( 'None', 'marketo' ),
'file' => esc_html__( 'Media File', 'marketo' ),
'custom' => esc_html__( 'Custom URL', 'marketo' ),
],
]
);
$this->add_control(
'open_lightbox',
[
'label' => __( 'Open Lightbox', 'marketo' ),
'type' => Controls_Manager::SELECT,
'default' => 'no',
'options' => [
'yes' => __( 'Yes', 'marketo' ),
'no' => __( 'No', 'marketo' ),
],
'condition' => [
'link_to' => 'file',
],
]
);
$this->add_control(
'link',
[
'label' => esc_html__( 'Link to', 'marketo' ),
'type' => Controls_Manager::URL,
'dynamic' => [
'active' => true,
],
'placeholder' => esc_html__( 'https://your-link.com', 'marketo' ),
'condition' => [
'link_to' => 'custom',
],
'show_label' => false,
]
);
$this->end_controls_section();
$this->start_controls_section(
'section_style_image',
[
'label' => esc_html__( 'Image', 'marketo' ),
'tab' => Controls_Manager::TAB_STYLE,
]
);
$this->add_responsive_control(
'space',
[
'label' => esc_html__( 'Size (%)', 'marketo' ),
'type' => Controls_Manager::SLIDER,
'default' => [
'unit' => '%',
],
'tablet_default' => [
'unit' => '%',
],
'mobile_default' => [
'unit' => '%',
],
'size_units' => [ '%' ],
'range' => [
'%' => [
'min' => 1,
'max' => 100,
],
],
'selectors' => [
'{{WRAPPER}} .elementor-image img' => 'max-width: {{SIZE}}{{UNIT}};',
],
]
);
$this->end_controls_section();
}
/**
* Render image widget output on the frontend.
*
* Written in PHP and used to generate the final HTML.
*
* @since 1.0.0
* @access protected
*/
protected function render() {
$settings = $this->get_settings_for_display();
if ( empty( $settings['image']['url'] ) ) {
return;
}
$link = $this->get_link_url( $settings );
if ( $link ) {
$this->add_render_attribute( 'link', [
'href' => $link['url'],
'data-elementor-open-lightbox' => $settings['open_lightbox'],
] );
if ( Plugin::$instance->editor->is_edit_mode() ) {
$this->add_render_attribute( 'link', [
'class' => 'elementor-clickable',
] );
}
if ( ! empty( $link['is_external'] ) ) {
$this->add_render_attribute( 'link', 'target', '_blank' );
}
if ( ! empty( $link['nofollow'] ) ) {
$this->add_render_attribute( 'link', 'rel', 'nofollow' );
}
}
?>
<?php if ( $link ) : ?>
<a class="xs-banner-campaign" <?php echo marketo_return($this->get_render_attribute_string( 'link' )); ?>>
<?php echo Group_Control_Image_Size::get_attachment_image_html( $settings ); ?>
</a>
<?php else: ?>
<a href="#" class="xs-banner-campaign">
<?php echo Group_Control_Image_Size::get_attachment_image_html( $settings ); ?>
</a>
<?php endif; ?>
<?php
}
/**
* Render image widget output in the editor.
*
* Written as a Backbone JavaScript template and used to generate the live preview.
*
* @since 1.0.0
* @access protected
*/
protected function content_template() {
}
/**
* Retrieve image widget link URL.
*
* @since 1.0.0
* @access private
*
* @param array $settings
*
* @return array|string|false An array/string containing the link URL, or false if no link.
*/
private function get_link_url( $settings ) {
if ( 'none' === $settings['link_to'] ) {
return false;
}
if ( 'custom' === $settings['link_to'] ) {
if ( empty( $settings['link']['url'] ) ) {
return false;
}
return $settings['link'];
}
return [
'url' => $settings['image']['url'],
];
}
}