File manager - Edit - /home/theblueo/tv/wp-content/plugins/sfwd-lms/includes/gutenberg/blocks/ld-course-inprogress/index.js
Back
/** * LearnDash Block ld-course-inprogress * * @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-course-inprogress', { title: sprintf(_x('LearnDash %s In Progress', 'placeholder: Course', 'learndash'), ldlms_get_custom_label('course') ), description: sprintf(_x('This block shows the content if the user is enrolled into the %s but not yet completed.', 'placeholder: course', 'learndash'), ldlms_get_custom_label('course') ), icon: 'star-half', category: 'learndash-blocks', supports: { customClassName: false, }, attributes: { course_id: { type: 'string', default: '', }, user_id: { type: 'string', default: '', }, autop: { type: 'boolean', default: true }, }, edit: props => { const { attributes: { course_id, user_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 })} /> <TextControl label={__('User ID', 'learndash')} help={__('Enter specific User ID. Leave blank for current User.', 'learndash')} value={user_id || ''} onChange={user_id => setAttributes({ user_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