Notice::hook()

Extension hooks and initialization; exits if the extension is not authorized by Tribe Common to run.

Contents


Source

File: src/Tribe/Views/V2/Customizer/Notice.php

	public function hook() {
		tribe_notice(
			'customizer_font_size_extension',
			[ $this, 'display_notice' ],
			[
				'type'     => 'warning',
				'dismiss'  => 1,
				'priority' => 0,
				'wrap'     => 'p',
			],
			[ $this, 'should_display' ]
		);
	}

Top ↑

Changelog

Changelog
Version Description
5.9.0 Introduced.