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
1011            * @since 2.0.0
1012            * @since 3.7.0 Added the user object.
1013            *
1014            * @param array   $allcaps An array of all the user's capabilities.
1015            * @param array   $caps    Actual capabilities for meta capability.
1016            * @param array   $args    Optional parameters passed to has_cap(), typically object ID.
1017            * @param WP_User $user    The user object.
1018            */
1019           // Must have ALL requested caps
1020           $capabilities = apply_filters( 'user_has_cap', $this->allcaps, $caps, $args, $this );
1021           $capabilities['exist'] = true; // Everyone is allowed to exist
1022           foreach ( (array) $caps as $cap ) {
1023                if ( empty( $capabilities[ $cap ] ) )
1024                     return false;
1025           }
1026
1027           return true;
1028      }
1029