You appear to be a bot. Output may be restricted
Description
Usage
Akismet_Admin::get_page_url( $page );
Parameters
- $page
- ( mixed ) optional default: config –
Returns
void
Source
File name: akismet/class.akismet-admin.php
Lines:
1 to 16 of 16
public static function get_page_url( $page = 'config' ) { $args = array( 'page' => 'akismet-key-config' ); if ( $page == 'stats' ) { $args = array( 'page' => 'akismet-key-config', 'view' => 'stats' ); } elseif ( $page == 'delete_key' ) { $args = array( 'page' => 'akismet-key-config', 'view' => 'start', 'action' => 'delete-key', '_wpnonce' => wp_create_nonce( self::NONCE ) ); } elseif ( $page === 'init' ) { $args = array( 'page' => 'akismet-key-config', 'view' => 'start' ); } return add_query_arg( $args, menu_page_url( 'akismet-key-config', false ) ); }