wpseek.com
Un motore di ricerca WordPress per sviluppatori e autori di temi



get_plugin_page_hookname › WordPress Function

Da1.5.0
Deprecaton/a
get_plugin_page_hookname ( $plugin_page, $parent_page )
Parametri: (2)
  • (string) $plugin_page The slug name of the plugin page.
    Richiesto:
  • (string) $parent_page The slug name for the parent menu (or the file name of a standard WordPress admin page).
    Richiesto:
Ritorna:
  • (string) Hook name for the plugin page.
Definito a:
Codex:

Gets the hook name for the administrative page of a plugin.



Sorgenti

function get_plugin_page_hookname( $plugin_page, $parent_page ) {
	global $admin_page_hooks;

	$parent = get_admin_page_parent( $parent_page );

	$page_type = 'admin';
	if ( empty( $parent_page ) || 'admin.php' === $parent_page || isset( $admin_page_hooks[ $plugin_page ] ) ) {
		if ( isset( $admin_page_hooks[ $plugin_page ] ) ) {
			$page_type = 'toplevel';
		} elseif ( isset( $admin_page_hooks[ $parent ] ) ) {
			$page_type = $admin_page_hooks[ $parent ];
		}
	} elseif ( isset( $admin_page_hooks[ $parent ] ) ) {
		$page_type = $admin_page_hooks[ $parent ];
	}

	$plugin_name = preg_replace( '!\.php!', '', $plugin_page );

	return $page_type . '_page_' . $plugin_name;
}