Module::remove_hooks()

Removes the service hooks.

Description

See also

Source

File: src/modules/evaluators/module.php

	public function remove_hooks() {
		if ( $this->hooks_added ) {
			remove_shortcode( "{$this->get_prefix()}form_charts" );
			remove_shortcode( 'form_charts' );
			remove_shortcode( 'element_chart' );
		}

		return parent::remove_hooks();
	}

Changelog

Changelog
Version Description
1.0.0 Introduced.