| Server IP : 45.77.68.45 / Your IP : 127.0.0.100 Web Server : PHPix/0.2.2 (Caddy compatible) System : wasi wasmer.sh 0.0.0 0.0.0 wasm32 User : ( 1) PHP Version : 8.3.21 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /app/wp-content/plugins/wordpress-seo/src/introductions/application/ |
Upload File : |
<?php
namespace Yoast\WP\SEO\Introductions\Application;
trait User_Allowed_Trait {
/**
* Determines whether the user has the required capabilities.
*
* @param string[] $capabilities The required capabilities.
*
* @return bool Whether the user has the required capabilities.
*/
private function is_user_allowed( $capabilities ) {
foreach ( $capabilities as $capability ) {
if ( ! \current_user_can( $capability ) ) {
return false;
}
}
return true;
}
}