LLMS_REST_API_Keys::get_admin_url()

Retrieve the base admin url for managing API keys.


Return Return

(string)


Top ↑

Source Source

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

	public function get_admin_url() {
		return add_query_arg(
			array(
				'page'    => 'llms-settings',
				'tab'     => 'rest-api',
				'section' => 'keys',
			),
			admin_url( 'admin.php' )
		);
	}

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.