LLMS_REST_Install::install()

Core install function


Return Return

(void)


Top ↑

Source Source

File: libraries/lifterlms-rest/includes/class-llms-rest-install.php

105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
public static function install() {
 
    if ( ! is_blog_installed() ) {
        return;
    }
 
    do_action( 'llms_rest_before_install' );
 
    LLMS_Roles::install();
    LLMS_Install::create_tables();
    self::update_version();
 
    do_action( 'llms_rest_after_install' );
 
}


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.