LLMS_Helper_Keys::get( string $key )

Retrieve stored information about a key by the license key


Parameters Parameters

$key

(string) (Required) License key.


Top ↑

Return Return

(array|false) Associative array of license key information. Returns false if the provided license key was not found.


Top ↑

Source Source

File: libraries/lifterlms-helper/includes/class-llms-helper-keys.php

		delete_site_transient( 'llms_helper_keys_activation_response_' . $cache_hash );

		$saved = llms_helper_options()->get_license_keys();
		foreach ( $keys as $key ) {
			if ( isset( $saved[ $key ] ) && $saved[ $key ]['update_key'] ) {
				$data['keys'][ $key ] = $saved[ $key ]['update_key'];


Top ↑

Changelog Changelog

Changelog
Version Description
3.3.1 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.