LLMS_REST_Capabilities
LLMS_REST_Capabilities class.
Contents
Source Source
File: libraries/lifterlms-rest/includes/class-llms-rest-capabilities.php
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 | 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. |