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
732            *
733            * @since 2.0.0
734            * @since 3.7.0 Added the user object.
735            *
736            * @param array   $allcaps An array of all the user's capabilities.
737            * @param array   $caps    Actual capabilities for meta capability.
738            * @param array   $args    Optional parameters passed to has_cap(), typically object ID.
739            * @param WP_User $user    The user object.
740            */
741           $capabilities = apply_filters( 'user_has_cap', $this->allcaps, $caps, $args, $this );
742
743           // Everyone is allowed to exist.
744           $capabilities['exist'] = true;
745
746           // Must have ALL requested caps.
747           foreach ( (array) $caps as $cap ) {
748                if ( empty( $capabilities[ $cap ] ) )
749                     return false;
750           }