Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
skyscrapers
/
wp-content
/
plugins
/
wordpress-seo
/
admin
/
roles
:
class-role-manager-factory.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?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 ) { $manager = new WPSEO_Role_Manager_WP(); } return $manager; } }