Code
Explorer
You are a developer and looking for Shopware projects?
Apply Now!
clear_rate_limit example
public
function
exit_recovery_mode
(
)
{
if
(
!
$this
->
is_active
(
)
)
{
return
false;
}
$this
->email_service->
clear_rate_limit
(
)
;
$this
->cookie_service->
clear_cookie
(
)
;
wp_paused_plugins
(
)
->
delete_all
(
)
;
wp_paused_themes
(
)
->
delete_all
(
)
;
return
true;
}
/** * Handles a request to exit Recovery Mode. * * @since 5.2.0 */