block.php
50 lines
| 1 | <?php |
| 2 | /** |
| 3 | * PHP render form Sureforms_Form Block. |
| 4 | * |
| 5 | * @package SureForms. |
| 6 | */ |
| 7 | |
| 8 | namespace SRFM\Inc\Blocks\Sform; |
| 9 | |
| 10 | use SRFM\Inc\Blocks\Base; |
| 11 | use SRFM\Inc\Generate_Form_Markup; |
| 12 | use SRFM\Inc\Helper; |
| 13 | |
| 14 | if ( ! defined( 'ABSPATH' ) ) { |
| 15 | exit; // Exit if accessed directly. |
| 16 | } |
| 17 | |
| 18 | /** |
| 19 | * Sureforms_Form Block. |
| 20 | */ |
| 21 | class Block extends Base { |
| 22 | /** |
| 23 | * Render the block. |
| 24 | * |
| 25 | * @param array<mixed> $attributes Block attributes. |
| 26 | * |
| 27 | * @return string|false |
| 28 | */ |
| 29 | public function render( $attributes ) { |
| 30 | $id = isset( $attributes['id'] ) ? Helper::get_integer_value( $attributes['id'] ) : ''; |
| 31 | |
| 32 | if ( empty( $id ) ) { |
| 33 | return ''; |
| 34 | } |
| 35 | |
| 36 | $sf_classname = $attributes['className'] ?? ''; |
| 37 | $show_title_current_page = $attributes['showTitle'] ?? true; |
| 38 | |
| 39 | $form = get_post( $id ); |
| 40 | |
| 41 | if ( ! $form || SRFM_FORMS_POST_TYPE !== $form->post_type || 'publish' !== $form->post_status ) { |
| 42 | return esc_html__( 'This form has been deleted or is unavailable.', 'sureforms' ); |
| 43 | } |
| 44 | |
| 45 | // Pass block attributes for per-embed styling support. |
| 46 | return Generate_Form_Markup::get_form_markup( $id, $show_title_current_page, $sf_classname, 'post', false, $attributes ); |
| 47 | } |
| 48 | |
| 49 | } |
| 50 |