69 lines
1.7 KiB
PHP
69 lines
1.7 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of EC-CUBE
|
|
*
|
|
* Copyright(c) EC-CUBE CO.,LTD. All Rights Reserved.
|
|
*
|
|
* http://www.ec-cube.co.jp/
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Plugin\Passkeys;
|
|
|
|
use Eccube\Event\TemplateEvent;
|
|
use Plugin\Passkeys\Repository\PasskeysAuthTypeRepository;
|
|
use Symfony\Component\EventDispatcher\EventSubscriberInterface;
|
|
|
|
/**
|
|
* Class Event.
|
|
*/
|
|
class Event implements EventSubscriberInterface
|
|
{
|
|
/**
|
|
* Event constructor.
|
|
*
|
|
* @throws \Exception
|
|
*/
|
|
public function __construct(PasskeysAuthTypeRepository $PasskeysAuthTypeRepository)
|
|
{
|
|
//$this->hasActiveAuthType = $PasskeysAuthTypeRepository->count(['isDisabled' => false]) > 0;
|
|
}
|
|
|
|
public static function getSubscribedEvents(): array
|
|
{
|
|
return [
|
|
'@admin/Setting/Shop/shop_master.twig' => 'onRenderAdminShopSettingEdit',
|
|
'@admin/Customer/edit.twig' => 'onRenderAdminCustomerEdit',
|
|
];
|
|
}
|
|
|
|
/**
|
|
* [/admin/setting/shop]表示の時のEvent Hook.
|
|
* Open/Close passkeys.
|
|
*
|
|
* @param TemplateEvent $event
|
|
*/
|
|
public function onRenderAdminShopSettingEdit(TemplateEvent $event)
|
|
{
|
|
|
|
$twig = 'Passkeys/Resource/template/admin/shop_edit_tfa.twig';
|
|
$event->addSnippet($twig);
|
|
}
|
|
|
|
/**
|
|
* [/admin/customer/edit]表示の時のEvent Hook.
|
|
* Personal passkeys enable/disable.
|
|
*
|
|
* @param TemplateEvent $event
|
|
*/
|
|
public function onRenderAdminCustomerEdit(TemplateEvent $event)
|
|
{
|
|
// add twig
|
|
$twig = 'Passkeys/Resource/template/admin/customer_edit.twig';
|
|
$event->addSnippet($twig);
|
|
}
|
|
}
|