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 13 of 13
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 ) ); $url = add_query_arg( $args, class_exists( 'Jetpack' ) ? admin_url( 'admin.php' ) : admin_url( 'options-general.php' ) ); return $url; }