index.php
2.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<?php
/**
* Handles all server side logic for the ld-course-notstarted Gutenberg Block. This block is functionally the same
* as the [course_notstarted] shortcode used within LearnDash.
*
* @package LearnDash
* @since 2.5.9
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
if ( ( class_exists( 'LearnDash_Gutenberg_Block' ) ) && ( ! class_exists( 'LearnDash_Gutenberg_Block_Course_Not_Started' ) ) ) {
/**
* Class for handling LearnDash Course Not Started Block
*/
class LearnDash_Gutenberg_Block_Course_Not_Started extends LearnDash_Gutenberg_Block {
/**
* Object constructor
*/
public function __construct() {
$this->shortcode_slug = 'course_notstarted';
$this->block_slug = 'ld-course-notstarted';
$this->self_closing = false;
$this->block_attributes = array(
'course_id' => array(
'type' => 'string',
),
'user_id' => array(
'type' => 'string',
),
'autop' => array(
'type' => 'boolean',
),
);
$this->init();
}
/**
* Render Block
*
* This function is called per the register_block_type() function above. This function will output
* the block rendered content. In the case of this function the rendered output will be for the
* [ld_profile] shortcode.
*
* @since 4.0.0
*
* @param array $block_attributes The block attributes.
* @param string $block_content The block content.
* @param WP_block $block The block object.
*
* @return none The output is echoed.
*/
public function render_block( $block_attributes = array(), $block_content = '', WP_block $block = null ) {
$block_attributes = $this->preprocess_block_attributes( $block_attributes );
/** This filter is documented in includes/gutenberg/blocks/ld-course-list/index.php */
$block_attributes = apply_filters( 'learndash_block_markers_shortcode_atts', $block_attributes, $this->shortcode_slug, $this->block_slug, '' );
$shortcode_out = '';
$shortcode_str = $this->build_block_shortcode( $block_attributes, $block_content );
if ( ! empty( $shortcode_str ) ) {
$shortcode_out = do_shortcode( $shortcode_str );
}
if ( ! empty( $shortcode_out ) ) {
if ( $this->block_attributes_is_editing_post( $block_attributes ) ) {
$shortcode_out = $this->render_block_wrap( $shortcode_out );
} else {
$shortcode_out = '<div class="learndash-wrap">' . $shortcode_out . '</div>';
}
}
return $shortcode_out;
}
// End of functions.
}
}
new LearnDash_Gutenberg_Block_Course_Not_Started();