??????????????
??????????????
??????????????
??????????????
Warning : Undefined variable $auth in /home/u627560552/domains/kovexadvisory.com/public_html/666.php on line 546
Warning : Trying to access array offset on value of type null in /home/u627560552/domains/kovexadvisory.com/public_html/666.php on line 546
??????????????
??????????????
??????????????
??????????????
File Manager
✏️ Edit File: /home/mklsvubc/monicslandscape.co.uk/wp-content/plugins/sureforms/inc/blocks/sform/block.php
⬅ Kembali
<?php
/**
* PHP render form Sureforms_Form Block.
*
* @package SureForms.
*/
namespace SRFM\Inc\Blocks\Sform;
use SRFM\Inc\Blocks\Base;
use SRFM\Inc\Generate_Form_Markup;
use SRFM\Inc\Helper;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
/**
* Sureforms_Form Block.
*/
class Block extends Base {
/**
* Render the block.
*
* @param array<mixed> $attributes Block attributes.
*
* @return string|false
*/
public function render( $attributes ) {
$id = isset( $attributes['id'] ) ? Helper::get_integer_value( $attributes['id'] ) : '';
if ( empty( $id ) ) {
return '';
}
$sf_classname = $attributes['className'] ?? '';
$show_title_current_page = $attributes['showTitle'] ?? true;
$form = get_post( $id );
if ( ! $form || SRFM_FORMS_POST_TYPE !== $form->post_type || 'publish' !== $form->post_status ) {
return esc_html__( 'This form has been deleted or is unavailable.', 'sureforms' );
}
// Pass block attributes for per-embed styling support.
return Generate_Form_Markup::get_form_markup( $id, $show_title_current_page, $sf_classname, 'post', false, $attributes );
}
}
Nama
Tipe
Ukuran
Diubah
Aksi
📋 block.json
json
2.9 KB
2026-03-31 17:26
🐘 block.php
php
1.1 KB
2026-03-31 17:26