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->add_control( 'tags_anchors', [ 'label' => __( 'Anchor by HTML tags)', 'mfn-opts' ), 'type' => \Elementor\Controls_Manager::SELECT2, 'label_block' => true, 'options' => array( 'H1' => 'H1', 'H2' => 'H2', 'H3' => 'H3', 'H4' => 'H4', 'H5' => 'H5', 'H6' => 'H6', ), 'multiple' => 'true', 'default' => array( 'H1' => 'H1', 'H2' => 'H2', 'H3' => 'H3', ), ] ); $this->add_control( 'marker_view', [ 'label' => __( 'Marker view', 'mfn-opts' ), 'type' => \Elementor\Controls_Manager::SELECT, 'options' => array( 'numbers' => 'Numbers', 'bullets' => 'Bullets' ), 'default' => 'numbers', ] ); $this->add_control( 'icon', [ 'label' => __( 'Icon', 'mfn-opts' ), 'type' => \Elementor\Controls_Manager::ICONS, ] ); $this->add_control( 'url_format', [ 'label' => __( 'Link format', 'mfn-opts' ), 'type' => \Elementor\Controls_Manager::SELECT, 'options' => array( '' => __('SEO friendly', 'mfn-opts'), 'simple' => __('Simple', 'mfn-opts'), ), 'default' => '', ] ); $this->add_control( 'allow_hide', [ 'label' => __( 'Toggle the Visibility', 'mfn-opts' ), 'type' => \Elementor\Controls_Manager::SELECT, 'options' => array( '' => __('Disable', 'mfn-opts'), 'enable' => __('Enable', 'mfn-opts'), 'hide' => __('Enable and hide initially', 'mfn-opts'), ), 'default' => '', ] ); $this->end_controls_section(); } /** * Render widget output on the frontend */ protected function render() { $settings = $this->get_settings_for_display(); // this field is space separated string, ie. 'h1 h2' if( ! empty($settings['tags_anchors']) ){ $settings['tags_anchors'] = implode(' ', $settings['tags_anchors']); } $settings['icon'] = $settings['icon']['value']; echo sc_table_of_contents( $settings ); } }