Changeset 34224 for trunk/src/wp-includes/capabilities-functions.php
- Timestamp:
- 09/16/2015 07:35:37 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/capabilities-functions.php
r34113 r34224 17 17 * @since 2.0.0 18 18 * 19 * @param string $cap Capability name. 20 * @param int $user_id User ID. 19 * @param string $cap Capability name. 20 * @param int $user_id User ID. 21 * @param int $object_id Optional. ID of the specific object to check against if `$cap` is a "meta" cap. 22 * "Meta" capabilities, e.g. 'edit_post', 'edit_user', etc., are capabilities used 23 * by map_meta_cap() to map to other "primitive" capabilities, e.g. 'edit_posts', 24 * 'edit_others_posts', etc. The parameter is accessed via func_get_args(). 21 25 * @return array Actual capabilities for meta capability. 22 26 */ … … 391 395 392 396 /** 393 * Whether current user has capability or role. 397 * Whether the current user has a specific capability. 398 * 399 * While checking against particular roles in place of a capability is supported 400 * in part, this practice is discouraged as it may produce unreliable results. 394 401 * 395 402 * @since 2.0.0 396 403 * 397 * @param string $capability Capability or role name. 398 * @return bool 404 * @see WP_User::has_cap() 405 * @see map_meta_cap() 406 * 407 * @param string $capability Capability name. 408 * @param int $object_id Optional. ID of the specific object to check against if `$capability` is a "meta" cap. 409 * "Meta" capabilities, e.g. 'edit_post', 'edit_user', etc., are capabilities used 410 * by map_meta_cap() to map to other "primitive" capabilities, e.g. 'edit_posts', 411 * 'edit_others_posts', etc. Accessed via func_get_args() and passed to WP_User::has_cap(), 412 * then map_meta_cap(). 413 * @return bool Whether the current user has the given capability. If `$capability` is a meta cap and `$object_id` is 414 * passed, whether the current user has the given meta capability for the given object. 399 415 */ 400 416 function current_user_can( $capability ) {
Note: See TracChangeset
for help on using the changeset viewer.