File manager - Edit - /home/theblueo/questionnaire/wp-content/plugins/sfwd-lms/includes/gutenberg/blocks/ld-visitor/index.js
Back
/** * LearnDash Block ld-visitor * * @since 2.5.9 * @package LearnDash */ /** * LearnDash block functions */ import { ldlms_get_post_edit_meta, ldlms_get_custom_label, ldlms_get_integer_value } from '../ldlms.js'; /** * Internal block libraries */ const { __, _x, sprintf } = wp.i18n; const { registerBlockType, } = wp.blocks; const { InnerBlocks, InspectorControls, } = wp.editor; const { PanelBody, TextControl, ToggleControl } = wp.components; registerBlockType( 'learndash/ld-visitor', { title: __( 'LearnDash Visitor', 'learndash' ), description: sprintf(_x('This block shows the content if the user is not enrolled into the %s.', 'placeholders: course', 'learndash'), ldlms_get_custom_label('course') ), icon: 'visibility', supports: { customClassName: false, }, category: 'learndash-blocks', attributes: { course_id: { type: 'string', default: '', }, autop: { type: 'boolean', default: true }, }, edit: props => { const { attributes: { course_id, autop }, className, setAttributes } = props; const inspectorControls = ( <InspectorControls> <PanelBody title={__('Settings', 'learndash')} > <TextControl label={sprintf(_x('%s ID', 'Course ID', 'learndash'), ldlms_get_custom_label('course'))} help={sprintf(_x('Enter single %1$s ID. Leave blank if used within a %2$s.', 'placeholders: course, course', 'learndash'), ldlms_get_custom_label('course'), ldlms_get_custom_label('course') ) } value={course_id || ''} onChange={course_id => setAttributes({ course_id })} /> <ToggleControl label={__('Auto Paragraph', 'learndash')} checked={!!autop} onChange={autop => setAttributes({ autop })} /> </PanelBody> </InspectorControls> ); let ld_block_error_message = ''; let preview_course_id = ldlms_get_integer_value(course_id); if (preview_course_id === 0) { preview_course_id = ldlms_get_post_edit_meta('course_id'); preview_course_id = ldlms_get_integer_value(preview_course_id); if (preview_course_id == 0) { ld_block_error_message = sprintf(_x('%1$s ID is required when not used within a %2$s.', 'placeholders: Course, Course', 'learndash'), ldlms_get_custom_label('course'), ldlms_get_custom_label('course')); } } if (ld_block_error_message.length) { ld_block_error_message = (<span className="learndash-block-error-message">{ld_block_error_message}</span>); } const outputBlock = ( <div className={className}> <div className="learndash-block-inner"> {ld_block_error_message} <InnerBlocks /> </div> </div> ); return [ inspectorControls, outputBlock ]; }, save: props => { return ( <InnerBlocks.Content /> ); } }, );
| ver. 1.4 |
Github
|
.
| PHP 7.0.33 | Generation time: 0 |
proxy
|
phpinfo
|
Settings