Module::bootstrap()

Bootstraps the module by setting properties.

Description

See also

Source

File: src/modules/evaluators/module.php

	protected function bootstrap() {
		$this->slug        = 'evaluators';
		$this->title       = __( 'Evaluators', 'torro-forms' );
		$this->description = __( 'Evaluators allow evaluating form submissions, for example to generate charts and analytics.', 'torro-forms' );

		$this->submodule_base_class = Evaluator::class;
		$this->default_submodules = array(
			'participation'     => Participation::class,
			'element_responses' => Element_Responses::class,
		);
	}

Changelog

Changelog
Version Description
1.0.0 Introduced.