start_controls_section( 'content_section', [ 'label' => __( 'Content', 'mfn-opts' ), ] ); $this->add_control( 'title', [ 'label' => __( 'Title', 'mfn-opts' ), 'type' => \Elementor\Controls_Manager::TEXT, 'label_block' => true, 'default' => __( 'This is the heading', 'mfn-opts' ), ] ); $this->add_control( 'title_tag', [ 'label' => __( 'Title tag', 'mfn-opts' ), 'type' => \Elementor\Controls_Manager::SELECT, 'options' => array( 'h1' => 'H1', 'h2' => 'H2', 'h3' => 'H3', 'h4' => 'H4', 'h5' => 'H5', 'h6' => 'H6', ), 'default' => 'h4', ] ); $this->end_controls_section(); $this->start_controls_section( 'item1_section', [ 'label' => __( 'Item 1', 'mfn-opts' ), ] ); $this->add_control( 'title1', [ 'label' => __( 'Title', 'mfn-opts' ), 'type' => \Elementor\Controls_Manager::TEXT, 'label_block' => true, 'default' => __( 'Regular tab', 'mfn-opts' ), ] ); $this->add_control( 'content1', [ 'label' => __( 'Content', 'mfn-opts' ), 'description' => __( 'Some Shortcodes and HTML tags allowed', 'mfn-opts' ), 'type' => \Elementor\Controls_Manager::WYSIWYG, 'default' => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit.', 'condition' => [ 'link1' => '', ], ] ); $this->add_control( 'link1', [ 'label' => __( 'Link', 'mfn-opts' ), 'description' => __( 'Use this field if you want to link to another page instead of showing the content', 'mfn-opts' ), 'type' => \Elementor\Controls_Manager::TEXT, 'label_block' => true, 'condition' => [ 'content1' => '', ], ] ); $this->add_control( 'target1', [ 'label' => __( 'Target', 'mfn-opts' ), 'type' => \Elementor\Controls_Manager::SELECT, 'options' => array( 0 => __('_self', 'mfn-opts'), 1 => __('_blank', 'mfn-opts'), ), 'default' => 0, 'condition' => [ 'content1' => '', ], ] ); $this->add_control( 'class1', [ 'label' => __( 'Link class', 'mfn-opts' ), 'description' => __( 'This option is useful when you want to use prettyphoto or scroll', 'mfn-opts' ), 'type' => \Elementor\Controls_Manager::TEXT, 'condition' => [ 'content1' => '', ], ] ); $this->end_controls_section(); $this->start_controls_section( 'item2_section', [ 'label' => __( 'Item 2', 'mfn-opts' ), ] ); $this->add_control( 'title2', [ 'label' => __( 'Title', 'mfn-opts' ), 'type' => \Elementor\Controls_Manager::TEXT, 'label_block' => true, 'default' => __( 'Scroll to ID', 'mfn-opts' ), ] ); $this->add_control( 'content2', [ 'label' => __( 'Content', 'mfn-opts' ), 'description' => __( 'Some Shortcodes and HTML tags allowed', 'mfn-opts' ), 'type' => \Elementor\Controls_Manager::WYSIWYG, 'condition' => [ 'link2' => '', ], ] ); $this->add_control( 'link2', [ 'label' => __( 'Link', 'mfn-opts' ), 'description' => __( 'Use this field if you want to link to another page instead of showing the content', 'mfn-opts' ), 'type' => \Elementor\Controls_Manager::TEXT, 'label_block' => true, 'default' => '#Footer', 'condition' => [ 'content2' => '', ], ] ); $this->add_control( 'target2', [ 'label' => __( 'Target', 'mfn-opts' ), 'type' => \Elementor\Controls_Manager::SELECT, 'options' => array( 0 => __('_self', 'mfn-opts'), 1 => __('_blank', 'mfn-opts'), ), 'default' => 0, 'condition' => [ 'content2' => '', ], ] ); $this->add_control( 'class2', [ 'label' => __( 'Link class', 'mfn-opts' ), 'description' => __( 'This option is useful when you want to use prettyphoto or scroll', 'mfn-opts' ), 'type' => \Elementor\Controls_Manager::TEXT, 'default' => 'scroll', 'condition' => [ 'content2' => '', ], ] ); $this->end_controls_section(); } /** * Render widget output on the frontend */ protected function render() { $settings = $this->get_settings_for_display(); echo sc_helper( $settings ); } }