bifurqué depuis D3Public/oxtotp
89 lignes
3.0 KiB
PHP
89 lignes
3.0 KiB
PHP
<?php
|
||
|
||
/**
|
||
* This Software is the property of Data Development and is protected
|
||
* by copyright law - it is NOT Freeware.
|
||
*
|
||
* Any unauthorized use of this software without a valid license
|
||
* is a violation of the license agreement and will be prosecuted by
|
||
* civil and criminal law.
|
||
*
|
||
* http://www.shopmodule.com
|
||
*
|
||
* @copyright (C) D3 Data Development (Inh. Thomas Dartsch)
|
||
* @author D3 Data Development - Daniel Seifert <support@shopmodule.com>
|
||
* @link http://www.oxidmodule.com
|
||
*/
|
||
|
||
use D3\Totp\Setup as ModuleSetup;
|
||
use D3\ModCfg\Application\Model\d3utils;
|
||
use OxidEsales\Eshop\Application\Controller\Admin\LoginController;
|
||
use OxidEsales\Eshop\Core\Utils;
|
||
use OxidEsales\Eshop\Application\Controller as OxidController;
|
||
use OxidEsales\Eshop\Application\Model as OxidModel;
|
||
use OxidEsales\Eshop\Application\Component as OxidComponent;
|
||
use OxidEsales\Eshop\Core as OxidCore;
|
||
|
||
/**
|
||
* Metadata version
|
||
*/
|
||
$sMetadataVersion = '2.0';
|
||
|
||
$sModuleId = 'd3totp';
|
||
/**
|
||
* Module information
|
||
*/
|
||
$aModule = [
|
||
'id' => $sModuleId,
|
||
'title' =>
|
||
(class_exists(d3utils::class) ? d3utils::getInstance()->getD3Logo() : 'D³') . ' Zwei-Faktor-Authentisierung / two-factor authentication',
|
||
'description' => [
|
||
'de' => 'Zwei-Faktor-Authentisierung (TOTP) für OXID eSales Shop',
|
||
'en' => 'Two-factor authentication (TOTP) for OXID eSales shop',
|
||
],
|
||
'thumbnail' => 'picture.png',
|
||
'version' => '0.1',
|
||
'author' => 'D³ Data Development (Inh.: Thomas Dartsch)',
|
||
'email' => 'support@shopmodule.com',
|
||
'url' => 'http://www.oxidmodule.com/',
|
||
'extend' => [
|
||
OxidModel\User::class => \D3\Totp\Modules\Application\Model\d3_totp_user::class,
|
||
LoginController::class => \D3\Totp\Modules\Application\Controller\Admin\d3_totp_LoginController::class,
|
||
Utils::class => \D3\Totp\Modules\Core\d3_totp_utils::class,
|
||
],
|
||
'controllers' => [
|
||
'd3user_totp' => \D3\Totp\Application\Controller\Admin\d3user_totp::class
|
||
],
|
||
'templates' => [
|
||
'd3user_totp.tpl' => 'd3/totp/Application/views/admin/tpl/d3user_totp.tpl',
|
||
],
|
||
'events' => [
|
||
'onActivate' => '\D3\Totp\Setup\Events::onActivate',
|
||
'onDeactivate' => '\D3\Totp\Setup\Events::onDeactivate',
|
||
],
|
||
'settings' => [
|
||
],
|
||
'blocks' => [
|
||
[
|
||
'template' => 'login.tpl',
|
||
'block' => 'admin_login_form',
|
||
'file' => 'Application/views/admin/blocks/d3totp_login_admin_login_form.tpl',
|
||
]
|
||
],
|
||
'd3FileRegister' => [
|
||
],
|
||
'd3SetupClasses' => [
|
||
ModuleSetup\Installation::class
|
||
]
|
||
];
|
||
|
||
// CREATE TABLE `d3totp` (
|
||
// `OXID` CHAR(32) NOT NULL,
|
||
// `OXUSERID` CHAR(32) NOT NULL,
|
||
// `USETOTP` TINYINT(1) NOT NULL DEFAULT '0',
|
||
// `SEED` VARCHAR(125) NOT NULL DEFAULT '0',
|
||
// PRIMARY KEY (`OXID`),
|
||
// UNIQUE INDEX `Schl<68>ssel 2` (`OXUSERID`)
|
||
//)
|
||
//ENGINE=InnoDB
|
||
//;
|