Welcome, visitor! Log in
 

Source View: admin_page_access_denied

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.

  • Action hooks look like this: do_action( "hook_name" )
  • Filter hooks look like this: apply_filters( "hook_name", "what_to_filter" ).

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
200                return ($default_menu_order[$a] <= $default_menu_order[$b]) ? -1 : 1;
201           }
202      }
203
204      usort($menu, 'sort_menu');
205      unset($menu_order, $default_menu_order);
206 }
207
208 if ( !user_can_access_admin_page() ) {
209      do_action('admin_page_access_denied');
210      wp_die( __('You do not have sufficient permissions to access this page.') );
211 }
212
213 $menu = add_menu_classes($menu);
214
215 ?>