Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: can_edit_network

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
700  */
701 function can_edit_network( $site_id ) {
702      global $wpdb;
703
704      if ($site_id == $wpdb->siteid )
705           $result = true;
706      else
707           $result = false;
708
709      return apply_filters( 'can_edit_network', $result, $site_id );
710 }
711
712 /**
713  * Thickbox image paths for Network Admin.
714  *
715  * @since 3.1.0
716  * @access private
717  */
718 function _thickbox_path_admin_subfolder() {