Module::render_output( int $form_id )

Renders the output for the protector before the Submit button.

Description

See also

Parameters

$form_id

(int) (Required) Form ID.

Source

File: src/modules/protectors/module.php

	protected function render_output( $form_id ) {
		$form = $this->manager()->forms()->get( $form_id );

		foreach ( $this->submodules as $slug => $protector ) {
			if ( ! $protector->enabled( $form ) ) {
				continue;
			}

			$protector->render_output( $form );
		}
	}

Changelog

Changelog
Version Description
1.0.0 Introduced.