wiki/content/20201116121759-is_remembered.md

41 lines
792 B
Markdown
Raw Normal View History

2024-05-06 20:40:05 +00:00
---
2024-10-30 17:34:11 +00:00
date: 2020-11-16
2024-05-06 20:40:05 +00:00
id: 70afdac5-245d-4bc5-920c-5d1b48d5fb5e
title: IS~REMEMBERED~
---
# Description
Checks if user is a "Remember Me" user. Replaces
[IS~AUTHENTICATEDFULLY~](20201116121711-is_authenticated_fully) &
[IS~AUTHENTICATEDREMEMBERED~](20201116121636-is_authenticated_remembered)
# Syntax
``` php
// BEFORE
if ($this->isGranted('IS_AUTHENTICATED_REMEMBERED')
&& !$this->isGranted('IS_AUTHENTICATED_FULLY')) {
// ...
}
// AFTER
if ($this->isGranted('IS_REMEMBERED')) {
// ...
}
```
``` twig
{# BEFORE #}
{% if is_granted('IS_AUTHENTICATED_ANONYMOUSLY')
and not is_granted('IS_AUTHENTICATED_REMEMBERED')
and not is_granted('IS_AUTHENTICATED_FULLY') %}
{# ... #}
{% endif %}
{# AFTER #}
{% if is_granted('IS_ANONYMOUS') %}
{# ... #}
{% endif %}
```