tag() . '.php', $this, true ); } /** * Component and control config * * @return array */ public function own_components() { $toggle = array( 'toggle' => array( 'config' => array( 'TogglePalettes' => [ 'config' => [], 'extends' => 'Palettes', ], 'ColumnNumber' => array( 'config' => array( 'default' => '1', 'min' => '1', 'max' => '5', 'limit' => '5', 'label' => __( 'Columns', 'thrive-cb' ), 'um' => [], ), 'extends' => 'Slider', ), 'ToggleWidth' => array( 'config' => array( 'default' => '1024', 'min' => '100', 'label' => __( 'Max width', 'thrive-cb' ), 'um' => [ 'px', '%' ], 'css' => 'max-width', ), 'extends' => 'Slider', ), 'VerticalSpace' => array( 'to' => ' .thrv_toggle_item', 'config' => array( 'default' => '0', 'min' => '0', 'max' => '300', 'label' => __( 'Vertical Space', 'thrive-cb' ), 'um' => [ 'px', '%' ], 'css' => 'margin-top', ), 'extends' => 'Slider', ), 'HorizontalSpace' => array( 'config' => array( 'default' => '16', 'min' => '0', 'max' => '300', 'label' => __( 'Horizontal Space', 'thrive-cb' ), 'um' => [ 'px' ], ), 'extends' => 'Slider', ), 'AutoCollapse' => array( 'config' => array( 'label' => __( 'Auto collapse toggles' ), 'info' => true, ), 'extends' => 'Switch', ), 'DropdownAnimation' => array( 'config' => array( 'name' => __( 'Dropdown Animation', 'thrive-cb' ), 'options' => array( array( 'value' => '', 'name' => __( 'None', 'thrive-cb' ), ), array( 'value' => 'slide', 'name' => __( 'Slide', 'thrive-cb' ), ), array( 'value' => 'fade', 'name' => __( 'Fade', 'thrive-cb' ), ), array( 'value' => 'slide-fade', 'name' => __( 'Slide & Fade', 'thrive-cb' ), ), ), ), 'extends' => 'Select', ), 'AnimationSpeed' => array( 'config' => array( 'name' => __( 'Animation speed', 'thrive-cb' ), 'options' => array( array( 'value' => 'slow', 'name' => __( 'Slow', 'thrive-cb' ), ), array( 'value' => 'medium', 'name' => __( 'Medium', 'thrive-cb' ), ), array( 'value' => 'fast', 'name' => __( 'Fast', 'thrive-cb' ), ), ), ), 'extends' => 'Select', ), 'List' => [ 'config' => [ 'sortable' => true, 'settings_icon' => 'pen-light', ], ], ), ), 'shadow' => [ 'config' => [ 'disabled_controls' => [ 'inner', 'text' ], ], ], 'borders' => [ 'disabled_controls' => [ 'Corners', 'hr' ], 'config' => [], ], 'typography' => [ 'hidden' => true ], 'animation' => [ 'hidden' => true ], 'layout' => [ 'disabled_controls' => [], ], ); return array_merge( $toggle, $this->group_component() ); } /** * Element category that will be displayed in the sidebar * * @return string */ public function category() { return static::get_thrive_advanced_label(); } /** * Group Edit Properties * * @return array|bool */ public function has_group_editing() { return array( 'select_values' => array( array( 'value' => 'toggle_items', 'selector' => '.thrv_toggle_title:not(.tve-state-expanded)', 'name' => __( 'Grouped Toggle Items', 'thrive-cb' ), 'singular' => __( '-- Toggle Item %s', 'thrive-cb' ), 'no_unlock' => true, ), array( 'value' => 'toggle_items_expanded', 'selector' => '.thrv_toggle_title.tve-state-expanded', 'name' => __( 'Grouped Expanded Toggle Items', 'thrive-cb' ), 'singular' => __( '-- Toggle Item %s', 'thrive-cb' ), 'no_unlock' => true, ), array( 'value' => 'all_toggle_contents', 'selector' => '.thrv_toggle_content', 'name' => __( 'Grouped Toggle Content', 'thrive-cb' ), 'singular' => __( '-- Toggle Content %s', 'thrive-cb' ), ), ), ); } /** * Element info * * @return string|string[][] */ public function info() { return [ 'instructions' => [ 'type' => 'help', 'url' => 'toggle', 'link' => 'https://help.thrivethemes.com/en/articles/4425878-how-to-use-the-toggle-element', ], ]; } }