LLMS_REST_Capabilities

LLMS_REST_Capabilities class.


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;
    }
 
}

Top ↑

Methods Methods

  • add — Add REST-specific capabilities to LifterLMS core cap lists.
  • init — Static Constructor.

Top ↑

Changelog Changelog

Changelog
Version Description
1.0.0-beta.1 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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