declare(strict_types=1);
namespace App\Menu\Listener;
use Sylius\Bundle\UiBundle\Menu\Event\MenuBuilderEvent;
final class AccountMenuListener
{
public function invoke(MenuBuilderEvent $event): void
{
$menu = $event->getMenu();
$menu
->addChild('multiFactorAuthentication', ['route' => 'sylius_shop_account_abenmada_multi_factor_authentication_plugin_shop_user_enable'])
->setLabel('abenmada_multi_factor_authentication_plugin.ui.multi_factor_authentication')
->setLabelAttribute('icon', 'shield');
}
}
declare(strict_types=1);
namespace App\Entity\User;
use Abenmada\MultiFactorAuthenticationPlugin\Model\MultiFactorAuthenticationTrait;
use Doctrine\ORM\Mapping as ORM;
use Scheb\TwoFactorBundle\Model\Google\TwoFactorInterface;
use Sylius\Component\Core\Model\AdminUser as BaseAdminUser;
/**
* @ORM\Entity
* @ORM\Table(name="sylius_admin_user")
*/
#[ORM\Entity]
#[ORM\Table(name: 'sylius_admin_user')]
class AdminUser extends BaseAdminUser implements TwoFactorInterface
{
use MultiFactorAuthenticationTrait;
public function getGoogleAuthenticatorUsername(): string
{
return $this->getEmail() ?: '';
}
}
declare(strict_types=1);
namespace App\Entity\User;
use Abenmada\MultiFactorAuthenticationPlugin\Model\MultiFactorAuthenticationTrait;
use Doctrine\ORM\Mapping as ORM;
use Scheb\TwoFactorBundle\Model\Google\TwoFactorInterface;
use Sylius\Component\Core\Model\ShopUser as BaseShopUser;
/**
* @ORM\Entity
* @ORM\Table(name="sylius_shop_user")
*/
#[ORM\Entity]
#[ORM\Table(name: 'sylius_shop_user')]
class ShopUser extends BaseShopUser implements TwoFactorInterface
{
use MultiFactorAuthenticationTrait;
public function getGoogleAuthenticatorUsername(): string
{
return $this->getEmail() ?: '';
}
}
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.