LLMS_DB_Upgrader::get_updates()

Retrieves the updates list


Return Return

(array)


Top ↑

Source Source

File: includes/class-llms-db-ugrader.php

191
192
193
194
195
196
197
198
199
200
201
202
203
public function get_updates() {
 
    /**
     * Filters the list of database updates.
     *
     * @since 5.2.0
     *
     * @param array            $updates  List of updates to be run.
     * @param LLMS_DB_Upgrader $upgrader Instance of the database upgrader.
     */
    return apply_filters( 'llms_db_updates_list', $this->updates, $this );
 
}


Top ↑

Changelog Changelog

Changelog
Version Description
5.2.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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