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