File Editor
Directories:
.. (Back)
field
helpers
settings
type
Files:
Accordion.php
AccordionItem.php
Audio.php
BarCounters.php
BarCountersItem.php
Blog.php
Blurb.php
Button.php
CircleCounter.php
Code.php
Comments.php
ContactForm.php
ContactFormItem.php
CountdownTimer.php
Cta.php
Divider.php
FilterablePortfolio.php
FullwidthCode.php
FullwidthHeader.php
FullwidthImage.php
FullwidthMap.php
FullwidthMenu.php
FullwidthPortfolio.php
FullwidthPostSlider.php
FullwidthPostTitle.php
FullwidthSlider.php
Gallery.php
Image.php
Login.php
Map.php
MapItem.php
NumberCounter.php
Portfolio.php
PostSlider.php
PostTitle.php
PostsNavigation.php
PricingTables.php
PricingTablesItem.php
Search.php
Shop.php
Sidebar.php
Signup.php
SignupItem.php
Slider.php
SliderItem.php
SocialMediaFollow.php
SocialMediaFollowItem.php
Tabs.php
TabsItem.php
TeamMember.php
Testimonial.php
Text.php
Toggle.php
Video.php
VideoSlider.php
VideoSliderItem.php
Create New File
Create
Edit File: Text.php
<?php class ET_Builder_Module_Text extends ET_Builder_Module { function init() { $this->name = esc_html__( 'Text', 'et_builder' ); $this->plural = esc_html__( 'Texts', 'et_builder' ); $this->slug = 'et_pb_text'; $this->vb_support = 'on'; $this->settings_modal_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_fields = 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', ), ), 'margin_padding' => array( 'css' => array( 'important' => 'all', ), ), 'text' => array( 'use_background_layout' => true, 'sub_toggle' => 'p', 'options' => array( 'text_orientation' => array( 'default' => 'left', ), 'background_layout' => array( 'default' => 'light', 'hover' => 'tabs', ), ), ), 'text_shadow' => array( // Don't add text-shadow fields since they already are via font-options 'default' => false, ), 'button' => false, ); $this->help_videos = array( array( 'id' => esc_html( 'oL00RjEKZaU' ), 'name' => esc_html__( 'An introduction to the Text module', 'et_builder' ), ), ); } function get_fields() { $fields = array( 'content' => 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', 'dynamic_content' => 'text', ), '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', 'default_on_front' => '', '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', 'default_on_front' => '', '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', 'default_unit' => 'px', 'default_on_front' => '', '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', 'default_on_front' => '', '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( 'inside' => esc_html__( 'Inside', 'et_builder' ), 'outside' => esc_html__( 'Outside', 'et_builder' ), ), 'priority' => 85, 'default' => 'inside', 'default_on_front' => '', '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', 'default_unit' => 'px', 'default_on_front' => '', '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', 'default_unit' => 'px', 'default_on_front' => '', '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, ), ); return $fields; } function convert_embeds( $matches ) { $pieces = explode( 'v=', $matches[1] ); return sprintf( '<p><iframe width="1080" height="608" src="%s" allow="%s" allowfullscreen></iframe></p>', sprintf( 'https://www.youtube.com/embed/%s', esc_attr( $pieces[1] ) ), "accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" ); } function render( $attrs, $content = null, $render_slug ) { $background_layout = $this->props['background_layout']; $background_layout_hover = et_pb_hover_options()->get_value( 'background_layout', $this->props, 'light' ); $background_layout_hover_enabled = et_pb_hover_options()->is_enabled( 'background_layout', $this->props ); $ul_type = $this->props['ul_type']; $ul_position = $this->props['ul_position']; $ul_item_indent = $this->props['ul_item_indent']; $ol_type = $this->props['ol_type']; $ol_position = $this->props['ol_position']; $ol_item_indent = $this->props['ol_item_indent']; $quote_border_weight = $this->props['quote_border_weight']; $quote_border_color = $this->props['quote_border_color']; $this->content = et_builder_replace_code_content_entities( $this->content ); // Un-autop converted GB block comments $this->content = preg_replace( '/(<p>)?<!-- (\/)?divi:(.+?) (\/?)-->(<\/p>)?/', '<!-- $2divi:$3 $4-->', $this->content ); // Convert GB embeds to iframes $this->content = preg_replace_callback( '/<!-- divi:core-embed\/youtube {"url":"([^"]+)"[\s\S]+?<!-- \/divi:core-embed\/youtube -->/', array( $this, 'convert_embeds' ), $this->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( $render_slug, array( 'selector' => '%%order_class%% ul', 'declaration' => sprintf( '%1$s %2$s %3$s', '' !== $ul_type ? sprintf( 'list-style-type: %1$s !important;', esc_html( $ul_type ) ) : '', '' !== $ul_position ? sprintf( 'list-style-position: %1$s;', esc_html( $ul_position ) ) : '', '' !== $ul_item_indent ? sprintf( 'padding-left: %1$s !important;', esc_html( $ul_item_indent ) ) : '' ), ) ); } if ( '' !== $ol_type || '' !== $ol_position || '' !== $ol_item_indent ) { ET_Builder_Element::set_style( $render_slug, array( 'selector' => '%%order_class%% ol', 'declaration' => sprintf( '%1$s %2$s %3$s', '' !== $ol_type ? sprintf( 'list-style-type: %1$s !important;', esc_html( $ol_type ) ) : '', '' !== $ol_position ? sprintf( 'list-style-position: %1$s !important;', esc_html( $ol_position ) ) : '', '' !== $ol_item_indent ? sprintf( 'padding-left: %1$s !important;', esc_html( $ol_item_indent ) ) : '' ), ) ); } if ( '' !== $quote_border_weight || '' !== $quote_border_color ) { ET_Builder_Element::set_style( $render_slug, 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 ) ) : '' ), ) ); } // Module classnames $this->add_classname( array( "et_pb_bg_layout_{$background_layout}", $this->get_text_orientation_classname(), ) ); $data_background_layout = ''; $data_background_layout_hover = ''; if ( $background_layout_hover_enabled ) { $data_background_layout = sprintf( ' data-background-layout="%1$s"', esc_attr( $background_layout ) ); $data_background_layout_hover = sprintf( ' data-background-layout-hover="%1$s"', esc_attr( $background_layout_hover ) ); } $output = sprintf( '<div%3$s class="%2$s"%6$s%7$s> %5$s %4$s <div class="et_pb_text_inner"> %1$s </div> </div> <!-- .et_pb_text -->', $this->content, $this->module_classname( $render_slug ), $this->module_id(), $video_background, $parallax_image_background, // #5 et_core_esc_previously( $data_background_layout ), et_core_esc_previously( $data_background_layout_hover ) ); return $output; } } new ET_Builder_Module_Text;
Save Changes
Rename File
Rename