┌────────────────────────────────┐ │ ░░░ ░░▓ ░▓▓ ███ ▓▓░ ▓░░ │ │ ~ M O O N ~ │ └────────────────────────────────┘
prd-web-01.centraldc.gr
LOCATION:
/var/www/html/graviera-pro/wp-content/plugins/lazy-blocks/controls/radio
☗ ROOT
↻ REFRESH
✎ EDIT FILE
EDITING: script.js
/* eslint-disable no-param-reassign */ /** * WordPress dependencies. */ import { __ } from '@wordpress/i18n'; import { addFilter } from '@wordpress/hooks'; import { PanelBody, RadioControl, ToggleControl } from '@wordpress/components'; /** * Internal dependencies. */ import BaseControl from '../../assets/components/base-control'; import Choices from '../../assets/components/choices'; import useBlockControlProps from '../../assets/hooks/use-block-control-props'; /** * Control render in editor. */ addFilter('lzb.editor.control.radio.render', 'lzb.editor', (render, props) => ( <BaseControl {...useBlockControlProps(props, { label: false })}> <RadioControl label={props.data.label} selected={props.getValue()} options={props.data.choices} onChange={props.onChange} /> </BaseControl> )); /** * Required check. * * @param {Object} validationData * @param {number} value * @param {Object} data * * @return {Object} validation data. */ function validate(validationData, value, data) { if (data.allow_null === 'true') { return { valid: true }; } if (!value) { return { valid: false, message: 'Please select an item in the list.', }; } return validationData; } addFilter('lzb.editor.control.radio.validate', 'lzb.editor', validate); /** * Control settings render in block builder. */ addFilter( 'lzb.constructor.control.radio.settings', 'lzb.constructor', (render, props) => { const { updateData, data } = props; const { choices } = data; return ( <> <PanelBody> <Choices value={choices} onChange={(val) => updateData({ choices: val })} /> </PanelBody> <PanelBody> <BaseControl id="lazyblocks-control-radio-allow-null" label={__('Allow Null', 'lazy-blocks')} help={__( 'Allows you to reset selected option value to null', 'lazy-blocks' )} > <ToggleControl id="lazyblocks-control-radio-allow-null" label={__('Yes', 'lazy-blocks')} checked={data.allow_null === 'true'} onChange={(value) => updateData({ allow_null: value ? 'true' : 'false', }) } __nextHasNoMarginBottom /> </BaseControl> </PanelBody> <PanelBody> <BaseControl id="lazyblocks-control-radio-output-format" label={__('Output Format', 'lazy-blocks')} help={__( 'Allows you to change attribute output format', 'lazy-blocks' )} > <RadioControl options={[ { label: __('Value', 'lazy-blocks'), value: '', }, { label: __('Label', 'lazy-blocks'), value: 'label', }, { label: __('Both (Array)', 'lazy-blocks'), value: 'array', }, ]} selected={data.output_format || ''} onChange={(value) => updateData({ output_format: value }) } /> </BaseControl> </PanelBody> </> ); } );
CANCEL
Name
Type
Size
Modified
Actions
↩ ..
DIR
—
—
📄 index.php
PHP
2.4 KB
2026-05-20 08:40
EDIT
📄 script.js
JS
2.9 KB
2026-05-20 08:40
EDIT