Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: admin_memory_limit

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
98
99 if ( WP_NETWORK_ADMIN )
100      require(ABSPATH . 'wp-admin/network/menu.php');
101 elseif ( WP_USER_ADMIN )
102      require(ABSPATH . 'wp-admin/user/menu.php');
103 else
104      require(ABSPATH . 'wp-admin/menu.php');
105
106 if ( current_user_can( 'manage_options' ) )
107      @ini_set( 'memory_limit', apply_filters( 'admin_memory_limit', WP_MAX_MEMORY_LIMIT ) );
108
109 do_action('admin_init');
110
111 if ( isset($plugin_page) ) {
112      if ( !empty($typenow) )
113           $the_parent = $pagenow . '?post_type=' . $typenow;
114      else
115           $the_parent = $pagenow;
116      if ( ! $page_hook = get_plugin_page_hook($plugin_page, $the_parent) ) {