components/Roles/Roles.php 1 location
|
@@ 432-438 (lines=7) @@
|
| 429 |
|
|
| 430 |
|
$role_caps = array(); |
| 431 |
|
|
| 432 |
|
foreach ( $wp_roles->role_objects as $key => $role ) { |
| 433 |
|
if ( is_array( $role->capabilities ) ) { |
| 434 |
|
foreach ( $role->capabilities as $cap => $grant ) { |
| 435 |
|
$role_caps[ $cap ] = $cap; |
| 436 |
|
} |
| 437 |
|
} |
| 438 |
|
} |
| 439 |
|
|
| 440 |
|
$role_caps = array_unique( $role_caps ); |
| 441 |
|
|
classes/fields/pick.php 1 location
|
@@ 2649-2655 (lines=7) @@
|
| 2646 |
|
|
| 2647 |
|
$role_caps = array(); |
| 2648 |
|
|
| 2649 |
|
foreach ( $wp_roles->role_objects as $key => $role ) { |
| 2650 |
|
if ( is_array( $role->capabilities ) ) { |
| 2651 |
|
foreach ( $role->capabilities as $cap => $grant ) { |
| 2652 |
|
$role_caps[ $cap ] = $cap; |
| 2653 |
|
} |
| 2654 |
|
} |
| 2655 |
|
} |
| 2656 |
|
|
| 2657 |
|
$role_caps = array_unique( $role_caps ); |
| 2658 |
|
|