File: /home/lucendi/www/wp-content/themes/divi/includes/builder/module/Text.php
<?php
class ET_Builder_Module_Text extends ET_Builder_Module {
function init() {
$this->name = esc_html__( 'Text', 'et_builder' );
$this->slug = 'et_pb_text';
$this->fb_support = true;
$this->whitelisted_fields = array(
'background_layout',
'content_new',
'admin_label',
'module_id',
'module_class',
'ul_type',
'ul_position',
'ul_item_indent',
'ol_type',
'ol_position',
'ol_item_indent',
'quote_border_weight',
'quote_border_color',
);
$this->fields_defaults = array(
'background_layout' => array( 'light' ),
'text_orientation' => array( 'left' ),
);
$this->options_toggles = array(
'general' => array(
'toggles' => array(
'main_content' => esc_html__( 'Text', 'et_builder' ),
),
),
'advanced' => array(
'toggles' => array(
'text' => array(
'title' => esc_html__( 'Text', 'et_builder' ),
'priority' => 45,
'tabbed_subtoggles' => true,
'bb_icons_support' => true,
'sub_toggles' => array(
'p' => array(
'name' => 'P',
'icon' => 'text-left',
),
'a' => array(
'name' => 'A',
'icon' => 'text-link',
),
'ul' => array(
'name' => 'UL',
'icon' => 'list',
),
'ol' => array(
'name' => 'OL',
'icon' => 'numbered-list',
),
'quote' => array(
'name' => 'QUOTE',
'icon' => 'text-quote',
),
),
),
'header' => array(
'title' => esc_html__( 'Heading Text', 'et_builder' ),
'priority' => 49,
'tabbed_subtoggles' => true,
'sub_toggles' => array(
'h1' => array(
'name' => 'H1',
'icon' => 'text-h1',
),
'h2' => array(
'name' => 'H2',
'icon' => 'text-h2',
),
'h3' => array(
'name' => 'H3',
'icon' => 'text-h3',
),
'h4' => array(
'name' => 'H4',
'icon' => 'text-h4',
),
'h5' => array(
'name' => 'H5',
'icon' => 'text-h5',
),
'h6' => array(
'name' => 'H6',
'icon' => 'text-h6',
),
),
),
'width' => array(
'title' => esc_html__( 'Sizing', 'et_builder' ),
'priority' => 65,
),
),
),
);
$this->main_css_element = '%%order_class%%';
$this->advanced_options = array(
'fonts' => array(
'text' => array(
'label' => esc_html__( 'Text', 'et_builder' ),
'css' => array(
'line_height' => "{$this->main_css_element} p",
'color' => "{$this->main_css_element}.et_pb_text",
),
'line_height' => array(
'default' => floatval( et_get_option( 'body_font_height', '1.7' ) ) . 'em',
),
'font_size' => array(
'default' => absint( et_get_option( 'body_font_size', '14' ) ) . 'px',
),
'toggle_slug' => 'text',
'sub_toggle' => 'p',
'hide_text_align' => true,
),
'link' => array(
'label' => esc_html__( 'Link', 'et_builder' ),
'css' => array(
'main' => "{$this->main_css_element} a",
'color' => "{$this->main_css_element}.et_pb_text a",
),
'line_height' => array(
'default' => '1em',
),
'font_size' => array(
'default' => absint( et_get_option( 'body_font_size', '14' ) ) . 'px',
),
'toggle_slug' => 'text',
'sub_toggle' => 'a',
),
'ul' => array(
'label' => esc_html__( 'Unordered List', 'et_builder' ),
'css' => array(
'main' => "{$this->main_css_element} ul",
'color' => "{$this->main_css_element}.et_pb_text ul",
'line_height' => "{$this->main_css_element} ul li",
),
'line_height' => array(
'default' => '1em',
),
'font_size' => array(
'default' => '14px',
),
'toggle_slug' => 'text',
'sub_toggle' => 'ul',
),
'ol' => array(
'label' => esc_html__( 'Ordered List', 'et_builder' ),
'css' => array(
'main' => "{$this->main_css_element} ol",
'color' => "{$this->main_css_element}.et_pb_text ol",
'line_height' => "{$this->main_css_element} ol li",
),
'line_height' => array(
'default' => '1em',
),
'font_size' => array(
'default' => '14px',
),
'toggle_slug' => 'text',
'sub_toggle' => 'ol',
),
'quote' => array(
'label' => esc_html__( 'Blockquote', 'et_builder' ),
'css' => array(
'main' => "{$this->main_css_element} blockquote",
'color' => "{$this->main_css_element}.et_pb_text blockquote",
),
'line_height' => array(
'default' => '1em',
),
'font_size' => array(
'default' => '14px',
),
'toggle_slug' => 'text',
'sub_toggle' => 'quote',
),
'header' => array(
'label' => esc_html__( 'Heading', 'et_builder' ),
'css' => array(
'main' => "{$this->main_css_element} h1",
),
'font_size' => array(
'default' => absint( et_get_option( 'body_header_size', '30' ) ) . 'px',
),
'toggle_slug' => 'header',
'sub_toggle' => 'h1',
),
'header_2' => array(
'label' => esc_html__( 'Heading 2', 'et_builder' ),
'css' => array(
'main' => "{$this->main_css_element} h2",
),
'font_size' => array(
'default' => '26px',
),
'line_height' => array(
'default' => '1em',
),
'toggle_slug' => 'header',
'sub_toggle' => 'h2',
),
'header_3' => array(
'label' => esc_html__( 'Heading 3', 'et_builder' ),
'css' => array(
'main' => "{$this->main_css_element} h3",
),
'font_size' => array(
'default' => '22px',
),
'line_height' => array(
'default' => '1em',
),
'toggle_slug' => 'header',
'sub_toggle' => 'h3',
),
'header_4' => array(
'label' => esc_html__( 'Heading 4', 'et_builder' ),
'css' => array(
'main' => "{$this->main_css_element} h4",
),
'font_size' => array(
'default' => '18px',
),
'line_height' => array(
'default' => '1em',
),
'toggle_slug' => 'header',
'sub_toggle' => 'h4',
),
'header_5' => array(
'label' => esc_html__( 'Heading 5', 'et_builder' ),
'css' => array(
'main' => "{$this->main_css_element} h5",
),
'font_size' => array(
'default' => '16px',
),
'line_height' => array(
'default' => '1em',
),
'toggle_slug' => 'header',
'sub_toggle' => 'h5',
),
'header_6' => array(
'label' => esc_html__( 'Heading 6', 'et_builder' ),
'css' => array(
'main' => "{$this->main_css_element} h6",
),
'font_size' => array(
'default' => '14px',
),
'line_height' => array(
'default' => '1em',
),
'toggle_slug' => 'header',
'sub_toggle' => 'h6',
),
),
'background' => array(
'settings' => array(
'color' => 'alpha',
),
),
'custom_margin_padding' => array(
'css' => array(
'important' => 'all',
),
),
'max_width' => array(),
'text' => array(
'sub_toggle' => 'p',
),
'filters' => array(),
);
}
function get_fields() {
$fields = array(
'background_layout' => array(
'label' => esc_html__( 'Text Color', 'et_builder' ),
'type' => 'select',
'option_category' => 'configuration',
'options' => array(
'light' => esc_html__( 'Dark', 'et_builder' ),
'dark' => esc_html__( 'Light', 'et_builder' ),
),
'tab_slug' => 'advanced',
'toggle_slug' => 'text',
'sub_toggle' => 'p',
'description' => esc_html__( 'Here you can choose the value of your text. If you are working with a dark background, then your text should be set to light. If you are working with a light background, then your text should be dark.', 'et_builder' ),
),
'content_new' => array(
'label' => esc_html__( 'Content', 'et_builder' ),
'type' => 'tiny_mce',
'option_category' => 'basic_option',
'description' => esc_html__( 'Here you can create the content that will be used within the module.', 'et_builder' ),
'toggle_slug' => 'main_content',
),
'ul_type' => array(
'label' => esc_html__( 'Unordered List Style Type', 'et_builder' ),
'type' => 'select',
'option_category' => 'configuration',
'options' => array(
'disc' => esc_html__( 'Disc', 'et_builder' ),
'circle' => esc_html__( 'Circle', 'et_builder' ),
'square' => esc_html__( 'Square', 'et_builder' ),
'none' => esc_html__( 'None', 'et_builder' ),
),
'priority' => 80,
'default' => 'disc',
'tab_slug' => 'advanced',
'toggle_slug' => 'text',
'sub_toggle' => 'ul',
),
'ul_position' => array(
'label' => esc_html__( 'Unordered List Style Position', 'et_builder' ),
'type' => 'select',
'option_category' => 'configuration',
'options' => array(
'outside' => esc_html__( 'Outside', 'et_builder' ),
'inside' => esc_html__( 'Inside', 'et_builder' ),
),
'priority' => 85,
'default' => 'outside',
'tab_slug' => 'advanced',
'toggle_slug' => 'text',
'sub_toggle' => 'ul',
),
'ul_item_indent' => array(
'label' => esc_html__( 'Unordered List Item Indent', 'et_builder' ),
'type' => 'range',
'option_category' => 'configuration',
'tab_slug' => 'advanced',
'toggle_slug' => 'text',
'sub_toggle' => 'ul',
'priority' => 90,
'default' => '0px',
'range_settings' => array(
'min' => '0',
'max' => '100',
'step' => '1',
),
),
'ol_type' => array(
'label' => esc_html__( 'Ordered List Style Type', 'et_builder' ),
'type' => 'select',
'option_category' => 'configuration',
'options' => array(
'decimal' => 'decimal',
'armenian' => 'armenian',
'cjk-ideographic' => 'cjk-ideographic',
'decimal-leading-zero' => 'decimal-leading-zero',
'georgian' => 'georgian',
'hebrew' => 'hebrew',
'hiragana' => 'hiragana',
'hiragana-iroha' => 'hiragana-iroha',
'katakana' => 'katakana',
'katakana-iroha' => 'katakana-iroha',
'lower-alpha' => 'lower-alpha',
'lower-greek' => 'lower-greek',
'lower-latin' => 'lower-latin',
'lower-roman' => 'lower-roman',
'upper-alpha' => 'upper-alpha',
'upper-greek' => 'upper-greek',
'upper-latin' => 'upper-latin',
'upper-roman' => 'upper-roman',
'none' => 'none',
),
'priority' => 80,
'default' => 'decimal',
'tab_slug' => 'advanced',
'toggle_slug' => 'text',
'sub_toggle' => 'ol',
),
'ol_position' => array(
'label' => esc_html__( 'Ordered List Style Position', 'et_builder' ),
'type' => 'select',
'option_category' => 'configuration',
'options' => array(
'outside' => esc_html__( 'Outside', 'et_builder' ),
'inside' => esc_html__( 'Inside', 'et_builder' ),
),
'priority' => 85,
'default' => 'outside',
'tab_slug' => 'advanced',
'toggle_slug' => 'text',
'sub_toggle' => 'ol',
),
'ol_item_indent' => array(
'label' => esc_html__( 'Ordered List Item Indent', 'et_builder' ),
'type' => 'range',
'option_category' => 'configuration',
'tab_slug' => 'advanced',
'toggle_slug' => 'text',
'sub_toggle' => 'ol',
'priority' => 90,
'default' => '0px',
'range_settings' => array(
'min' => '0',
'max' => '100',
'step' => '1',
),
),
'quote_border_weight' => array(
'label' => esc_html__( 'Blockquote Border Weight', 'et_builder' ),
'type' => 'range',
'option_category' => 'configuration',
'tab_slug' => 'advanced',
'toggle_slug' => 'text',
'sub_toggle' => 'quote',
'priority' => 85,
'default' => '5px',
'range_settings' => array(
'min' => '0',
'max' => '100',
'step' => '1',
),
),
'quote_border_color' => array(
'label' => esc_html__( 'Blockquote Border Color', 'et_builder' ),
'type' => 'color-alpha',
'option_category' => 'configuration',
'custom_color' => true,
'tab_slug' => 'advanced',
'toggle_slug' => 'text',
'sub_toggle' => 'quote',
'field_template' => 'color',
'priority' => 90,
),
'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;
}
// Don't add text-shadow fields since they already are via font-options
protected function _add_additional_text_shadow_fields() {}
function shortcode_callback( $atts, $content = null, $function_name ) {
$module_id = $this->shortcode_atts['module_id'];
$module_class = $this->shortcode_atts['module_class'];
$background_layout = $this->shortcode_atts['background_layout'];
$ul_type = $this->shortcode_atts['ul_type'];
$ul_position = $this->shortcode_atts['ul_position'];
$ul_item_indent = $this->shortcode_atts['ul_item_indent'];
$ol_type = $this->shortcode_atts['ol_type'];
$ol_position = $this->shortcode_atts['ol_position'];
$ol_item_indent = $this->shortcode_atts['ol_item_indent'];
$quote_border_weight = $this->shortcode_atts['quote_border_weight'];
$quote_border_color = $this->shortcode_atts['quote_border_color'];
$module_class = ET_Builder_Element::add_module_order_class( $module_class, $function_name );
$this->shortcode_content = et_builder_replace_code_content_entities( $this->shortcode_content );
$video_background = $this->video_background();
$parallax_image_background = $this->get_parallax_image_background();
if ( '' !== $ul_type || '' !== $ul_position || '' !== $ul_item_indent ) {
ET_Builder_Element::set_style( $function_name, array(
'selector' => '%%order_class%% ul',
'declaration' => sprintf(
'%1$s
%2$s
%3$s',
'' !== $ul_type ? sprintf( 'list-style-type: %1$s;', esc_html( $ul_type ) ) : '',
'' !== $ul_position ? sprintf( 'list-style-position: %1$s;', esc_html( $ul_position ) ) : '',
'' !== $ul_item_indent ? sprintf( 'padding-left: %1$s;', esc_html( $ul_item_indent ) ) : ''
),
) );
}
if ( '' !== $ol_type || '' !== $ol_position || '' !== $ol_item_indent ) {
ET_Builder_Element::set_style( $function_name, array(
'selector' => '%%order_class%% ol',
'declaration' => sprintf(
'%1$s
%2$s
%3$s',
'' !== $ol_type ? sprintf( 'list-style-type: %1$s;', esc_html( $ol_type ) ) : '',
'' !== $ol_position ? sprintf( 'list-style-position: %1$s;', esc_html( $ol_position ) ) : '',
'' !== $ol_item_indent ? sprintf( 'padding-left: %1$s;', esc_html( $ol_item_indent ) ) : ''
),
) );
}
if ( '' !== $quote_border_weight || '' !== $quote_border_color ) {
ET_Builder_Element::set_style( $function_name, array(
'selector' => '%%order_class%% blockquote',
'declaration' => sprintf(
'%1$s
%2$s',
'' !== $quote_border_weight ? sprintf( 'border-width: %1$s;', esc_html( $quote_border_weight ) ) : '',
'' !== $quote_border_color ? sprintf( 'border-color: %1$s;', esc_html( $quote_border_color ) ) : ''
),
) );
}
$class = " et_pb_module et_pb_bg_layout_{$background_layout}{$this->get_text_orientation_classname()}";
$output = sprintf(
'<div%3$s class="et_pb_text%2$s%4$s%5$s%7$s">
%8$s
%6$s
<div class="et_pb_text_inner">
%1$s
</div>
</div> <!-- .et_pb_text -->',
$this->shortcode_content,
esc_attr( $class ),
( '' !== $module_id ? sprintf( ' id="%1$s"', esc_attr( $module_id ) ) : '' ),
( '' !== $module_class ? sprintf( ' %1$s', esc_attr( $module_class ) ) : '' ),
'' !== $video_background ? ' et_pb_section_video et_pb_preload' : '', // #5
$video_background,
'' !== $parallax_image_background ? ' et_pb_section_parallax' : '',
$parallax_image_background
);
return $output;
}
}
new ET_Builder_Module_Text;