📁 File Manager Pro
v10.0.2 | PHP: 8.1.34
Server: LiteSpeed
2026-06-26 11:34:17
📂
/
/
home
/
pallabnv
/
public_html
/
wp-content__3bb9dea
/
plugins
/
wordpress-seo
/
src
/
introductions
/
application
✏️
Editing: user-allowed-trait.php
<?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; } }
💾 Save Changes
❌ Cancel