WPSEO_Role_Manager_Factory{}
Role Manager Factory.
Хуков нет.
Использование
$WPSEO_Role_Manager_Factory = new WPSEO_Role_Manager_Factory(); // use class methods
Методы
- public static get()
Код WPSEO_Role_Manager_Factory{} WPSEO Role Manager Factory{} Yoast 27.4
class WPSEO_Role_Manager_Factory {
/**
* Retrieves the Role manager to use.
*
* @return WPSEO_Role_Manager
*/
public static function get() {
static $manager = null;
$manager ??= new WPSEO_Role_Manager_WP();
return $manager;
}
}