📁 File Manager Pro
v10.0.3 | PHP: 7.4.33
Server: LiteSpeed
2026-06-26 09:09:55
📂
/ (Root)
/
home
/
supecsoq
/
public_html
/
domains
/
migalexpark.com
/
wp-content
/
plugins
/
wordpress-seo
/
admin
/
roles
📍 /home/supecsoq/public_html/domains/migalexpark.com/wp-content/plugins/wordpress-seo/admin/roles
🔄 Refresh
✏️
Editing: class-role-manager-factory.php
Writable
<?php /** * WPSEO plugin file. * * @package WPSEO\Admin\Roles */ /** * Role Manager Factory. */ class WPSEO_Role_Manager_Factory { /** * Retrieves the Role manager to use. * * @return WPSEO_Role_Manager */ public static function get() { static $manager = null; if ( $manager === null ) { if ( function_exists( 'wpcom_vip_add_role' ) ) { $manager = new WPSEO_Role_Manager_VIP(); } if ( ! function_exists( 'wpcom_vip_add_role' ) ) { $manager = new WPSEO_Role_Manager_WP(); } } return $manager; } }
💾 Save Changes
❌ Cancel