📁 File Manager Pro
v10.0.3 | PHP: 8.1.34
Server: LiteSpeed
2026-06-28 23:10:44
📂
/ (Root)
/
home
/
apkbfjox
/
rr3.pro
/
wp-content
/
themes
/
kadence
/
inc
/
customizer
/
react
/
src
/
focus-button
📍 /home/apkbfjox/rr3.pro/wp-content/themes/kadence/inc/customizer/react/src/focus-button
🔄 Refresh
✏️
Editing: focus-button-component.js
Writable
/* jshint esversion: 6 */ import PropTypes from 'prop-types'; import classnames from 'classnames'; import ResponsiveControl from '../common/responsive.js'; import Icons from '../common/icons.js'; import { ReactSortable } from "react-sortablejs"; import { __ } from '@wordpress/i18n'; const { ButtonGroup, Dashicon, Tooltip, Button } = wp.components; const { Component, Fragment } = wp.element; class FocusButtonComponent extends Component { constructor() { super( ...arguments ); this.focusPanel = this.focusPanel.bind( this ); let defaultParams = { 'section': '', }; this.controlParams = this.props.control.params.input_attrs ? { ...defaultParams, ...this.props.control.params.input_attrs, } : defaultParams; } focusPanel( section ) { if ( undefined !== this.props.customizer.section( section ) ) { this.props.customizer.section( section ).focus(); } } render() { return ( <div className="kadence-control-field kadence-available-items"> <div className={ 'kadence-builder-item-start' }> <Button className="kadence-builder-item" onClick={ () => this.focusPanel( this.controlParams.section ) } data-section={ this.controlParams.section }> { ( this.props.control.params.label ? this.props.control.params.label : '' ) } <span className="kadence-builder-item-icon" > <Dashicon icon="arrow-right-alt2"/> </span> </Button> </div> { this.props.control.renderNotice() } </div> ); } } FocusButtonComponent.propTypes = { control: PropTypes.object.isRequired, customizer: PropTypes.object.isRequired }; export default FocusButtonComponent;
💾 Save Changes
❌ Cancel