Tribe__Image__Plus__Main::filter_install_key( string $value )

Filter the PUE install key for image widget plus to use the PUE__Helper class

Note: this only gets run if running an older version of TEC (pre PUE 2.0 embedded licensing)


Parameters

$value

(string) (Required)


Top ↑

Return

(string)


Top ↑

Source

File: src/Tribe/Main.php

	public function filter_install_key( $value ) {
		if ( $value ) {
			return $value;
		}

		return Tribe__Image__Plus__PUE__Helper::DATA;
	}