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

	public static function get( $key ) {

		$saved = llms_helper_options()->get_license_keys();
		return isset( $saved[ $key ] ) ? $saved[ $key ] : false;

	}


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.