LLMS_REST_Capabilities
LLMS_REST_Capabilities class.
Contents
Source Source
File: libraries/lifterlms-rest/includes/class-llms-rest-capabilities.php
class LLMS_REST_Capabilities {
/**
* Static Constructor.
*
* @since 1.0.0-beta.1
*
* @return void
*/
public static function init() {
add_filter( 'llms_get_administrator_core_caps', array( __CLASS__, 'add' ) );
add_filter( 'llms_get_lms_manager_core_caps', array( __CLASS__, 'add' ) );
}
/**
* Add REST-specific capabilities to LifterLMS core cap lists.
*
* @since 1.0.0-beta.1
*
* @see LLMS_Roles::get_core_caps()
*
* @param array $caps Assoc. array of existing caps, array key is the capability and the value is a bool (true = has cap).
* @return array
*/
public static function add( $caps ) {
$caps['manage_lifterlms_api_keys'] = true;
$caps['manage_lifterlms_webhooks'] = true;
return $caps;
}
}
Expand full source code Collapse full source code View on GitHub
Methods Methods
Changelog Changelog
| Version | Description |
|---|---|
| 1.0.0-beta.1 | Introduced. |