LLMS_Helper_Keys::get( string $key )
Retrieve stored information about a key by the license key
Parameters Parameters
- $key
-
(string) (Required) License key.
Return Return
(array|false) Associative array of license key information. Returns false
if the provided license key was not found.
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; }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
3.3.1 | Introduced. |