File: /home/lucendi/www/wp-content/themes/divi/includes/builder/module/Button.php
<?php
class ET_Builder_Module_Button extends ET_Builder_Module {
function init() {
$this->name = esc_html__( 'Button', 'et_builder' );
$this->slug = 'et_pb_button';
$this->fb_support = true;
$this->whitelisted_fields = array(
'button_url',
'url_new_window',
'button_text',
'background_layout',
'button_alignment',
'admin_label',
'module_id',
'module_class',
);
$this->fields_defaults = array(
'url_new_window' => array( 'off' ),
'background_layout' => array( 'light' ),
);
$this->main_css_element = '%%order_class%%';
$this->custom_css_options = array(
'main_element' => array(
'label' => esc_html__( 'Main Element', 'et_builder' ),
'selector' => '.et_pb_button.et_pb_module',
'no_space_before_selector' => true,
),
);
$this->options_toggles = array(
'general' => array(
'toggles' => array(
'main_content' => esc_html__( 'Text', 'et_builder' ),
'link' => esc_html__( 'Link', 'et_builder' ),
),
),
'advanced' => array(
'toggles' => array(
'alignment' => esc_html__( 'Alignment', 'et_builder' ),
'text' => array(
'title' => esc_html__( 'Text', 'et_builder' ),
'priority' => 49,
),
),
),
);
$this->advanced_options = array(
'button' => array(
'button' => array(
'label' => esc_html__( 'Button', 'et_builder' ),
'css' => array(
'main' => $this->main_css_element,
'plugin_main' => "{$this->main_css_element}.et_pb_module",
),
),
),
'custom_margin_padding' => array(
'css' => array(
'main' => "{$this->main_css_element}.et_pb_module, .et_pb_module {$this->main_css_element}.et_pb_module:hover",
'important' => 'all',
),
),
'filters' => array(),
);
}
function get_fields() {
$fields = array(
'button_url' => array(
'label' => esc_html__( 'Button URL', 'et_builder' ),
'type' => 'text',
'option_category' => 'basic_option',
'description' => esc_html__( 'Input the destination URL for your button.', 'et_builder' ),
'toggle_slug' => 'link',
),
'url_new_window' => array(
'label' => esc_html__( 'Url Opens', 'et_builder' ),
'type' => 'select',
'option_category' => 'configuration',
'options' => array(
'off' => esc_html__( 'In The Same Window', 'et_builder' ),
'on' => esc_html__( 'In The New Tab', 'et_builder' ),
),
'toggle_slug' => 'link',
'description' => esc_html__( 'Here you can choose whether or not your link opens in a new window', 'et_builder' ),
),
'button_text' => array(
'label' => esc_html__( 'Button Text', 'et_builder' ),
'type' => 'text',
'option_category' => 'basic_option',
'description' => esc_html__( 'Input your desired button text.', 'et_builder' ),
'toggle_slug' => 'main_content',
),
'button_alignment' => array(
'label' => esc_html__( 'Button Alignment', 'et_builder' ),
'type' => 'text_align',
'option_category' => 'configuration',
'options' => et_builder_get_text_orientation_options( array( 'justified' ) ),
'tab_slug' => 'advanced',
'toggle_slug' => 'alignment',
'description' => esc_html__( 'Here you can define the alignment of Button', 'et_builder' ),
),
'background_layout' => array(
'label' => esc_html__( 'Text Color', 'et_builder' ),
'type' => 'select',
'option_category' => 'color_option',
'options' => array(
'light' => esc_html__( 'Dark', 'et_builder' ),
'dark' => esc_html__( 'Light', 'et_builder' ),
),
'tab_slug' => 'advanced',
'toggle_slug' => 'text',
'description' => esc_html__( 'Here you can choose whether your text should be light or dark. If you are working with a dark background, then your text should be light. If your background is light, then your text should be set to dark.', 'et_builder' ),
),
'disabled_on' => array(
'label' => esc_html__( 'Disable on', 'et_builder' ),
'type' => 'multiple_checkboxes',
'options' => array(
'phone' => esc_html__( 'Phone', 'et_builder' ),
'tablet' => esc_html__( 'Tablet', 'et_builder' ),
'desktop' => esc_html__( 'Desktop', 'et_builder' ),
),
'additional_att' => 'disable_on',
'option_category' => 'configuration',
'description' => esc_html__( 'This will disable the module on selected devices', 'et_builder' ),
'tab_slug' => 'custom_css',
'toggle_slug' => 'visibility',
),
'admin_label' => array(
'label' => esc_html__( 'Admin Label', 'et_builder' ),
'type' => 'text',
'description' => esc_html__( 'This will change the label of the module in the builder for easy identification.', 'et_builder' ),
'toggle_slug' => 'admin_label',
),
'module_id' => array(
'label' => esc_html__( 'CSS ID', 'et_builder' ),
'type' => 'text',
'option_category' => 'configuration',
'tab_slug' => 'custom_css',
'toggle_slug' => 'classes',
'option_class' => 'et_pb_custom_css_regular',
),
'module_class' => array(
'label' => esc_html__( 'CSS Class', 'et_builder' ),
'type' => 'text',
'option_category' => 'configuration',
'tab_slug' => 'custom_css',
'toggle_slug' => 'classes',
'option_class' => 'et_pb_custom_css_regular',
),
);
return $fields;
}
protected function _add_additional_text_shadow_fields() {
// Text Shadow settings are already included its Custom Style, no need to add them to Text toggle too.
}
public function get_button_alignment() {
$text_orientation = isset( $this->shortcode_atts['button_alignment'] ) ? $this->shortcode_atts['button_alignment'] : '';
return et_pb_get_alignment( $text_orientation );
}
function shortcode_callback( $atts, $content = null, $function_name ) {
$module_id = $this->shortcode_atts['module_id'];
$module_class = $this->shortcode_atts['module_class'];
$button_url = $this->shortcode_atts['button_url'];
$button_rel = $this->shortcode_atts['button_rel'];
$button_text = $this->shortcode_atts['button_text'];
$background_layout = $this->shortcode_atts['background_layout'];
$url_new_window = $this->shortcode_atts['url_new_window'];
$custom_icon = $this->shortcode_atts['button_icon'];
$button_custom = $this->shortcode_atts['custom_button'];
$button_alignment = $this->get_button_alignment();
// Nothing to output if neither Button Text nor Button URL defined
$button_url = trim( $button_url );
if ( '' === $button_text && '' === $button_url ) {
return '';
}
$module_class = ET_Builder_Element::add_module_order_class( $module_class, $function_name );
$module_class .= " et_pb_module et_pb_bg_layout_{$background_layout}";
$output = sprintf(
'<div class="et_pb_button_module_wrapper et_pb_module%9$s">
<a class="et_pb_button%5$s%7$s" href="%1$s"%3$s%4$s%6$s%8$s>%2$s</a>
</div>',
esc_url( $button_url ),
'' !== $button_text ? esc_html( $button_text ) : esc_url( $button_url ),
( 'on' === $url_new_window ? ' target="_blank"' : '' ),
'' !== $custom_icon && 'on' === $button_custom ? sprintf(
' data-icon="%1$s"',
esc_attr( et_pb_process_font_icon( $custom_icon ) )
) : '',
'' !== $custom_icon && 'on' === $button_custom ? ' et_pb_custom_button_icon' : '',
( '' !== $module_id ? sprintf( ' id="%1$s"', esc_attr( $module_id ) ) : '' ),
( '' !== $module_class ? sprintf( ' %1$s', esc_attr( $module_class ) ) : '' ),
$this->get_rel_attributes( $button_rel ),
sprintf( ' et_pb_button_alignment_%1$s', esc_attr( $button_alignment ) )
);
return $output;
}
protected function _add_button_box_shadow_fields( $fields, $option_name, $tab_slug, $toggle_slug ) {
return $fields;
}
protected function _add_additional_border_fields() {
return false;
}
function process_advanced_border_options( $function_name ) {
return false;
}
}
new ET_Builder_Module_Button;