Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: user_has_cap

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 has_cap( $cap ) {
702           if ( is_numeric( $cap ) )
703                $cap = $this->translate_level_to_cap( $cap );
704
705           $args = array_slice( func_get_args(), 1 );
706           $args = array_merge( array( $cap, $this->ID ), $args );
707           $caps = call_user_func_array( 'map_meta_cap', $args );
708           // Must have ALL requested caps
709           $capabilities = apply_filters( 'user_has_cap', $this->allcaps, $caps, $args );
710           foreach ( (array) $caps as $cap ) {
711                //echo "Checking cap $cap<br />";
712                if ( empty( $capabilities[$cap] ) || !$capabilities[$cap] )
713                     return false;
714           }
715
716           return true;
717      }
718