class-form.php
<?php
namespace HivePress\Blocks;
use HivePress\Helpers as hp;
defined( 'ABSPATH' ) || exit;
class Form extends Block {
protected $form;
protected $message;
protected $redirect;
protected $values = [];
protected $attributes = [];
protected $header = [];
protected $footer = [];
public function render() {
$output = '';
$form_args = [];
$model = hp\call_class_method( '\HivePress\Forms\\' . $this->form, 'get_meta', [ 'model' ] );
if ( $model ) {
$form_args['model'] = $this->get_context( $model );
}
if ( is_string( $this->message ) ) {
$form_args['message'] = $this->message;
}
if ( $this->redirect ) {
$form_args['redirect'] = $this->redirect;
}
$form_args['attributes'] = $this->attributes;
if ( $this->header ) {
$form_args['header'] = ( new Container(
[
'context' => $this->context,
'tag' => false,
'blocks' => $this->header,
]
) )->render();
}
if ( $this->footer ) {
$form_args['footer'] = ( new Container(
[
'context' => $this->context,
'tag' => false,
'blocks' => $this->footer,
]
) )->render();
}
$form = hp\create_class_instance( '\HivePress\Forms\\' . $this->form, [ $form_args ] );
if ( $form ) {
$form->set_values( $this->values, true );
if ( $form->get_method() === 'POST' ) {
$form->set_values( $_POST, true );
} elseif ( $form->get_method() === 'GET' ) {
$form->set_values( $_GET, true );
}
$output .= $form->render();
}
return $output;
}
}