Files
domokits/local/modules/TakeCustomerAccount/TakeCustomerAccount.php
2019-11-21 12:25:31 +01:00

44 lines
1.7 KiB
PHP

<?php
/*************************************************************************************/
/* This file is part of the module TakeCustomerAccount */
/* */
/* Copyright (c) OpenStudio */
/* email : dev@thelia.net */
/* web : http://www.thelia.net */
/* */
/* For the full copyright and license information, please view the LICENSE.txt */
/* file that was distributed with this source code. */
/*************************************************************************************/
namespace TakeCustomerAccount;
use Thelia\Core\Template\TemplateDefinition;
use Thelia\Module\BaseModule;
class TakeCustomerAccount extends BaseModule
{
const MODULE_DOMAIN = "takecustomeraccount";
/**
* {@inheritdoc}
*/
public function getHooks()
{
return [
[
"type" => TemplateDefinition::BACK_OFFICE,
"code" => "take-customer-account.form",
"title" => array(
"fr_FR" => "Module Take Customer Account, form",
"en_US" => "Module Take Customer Account, form",
),
"description" => array(
"fr_FR" => "En haut du formulaire",
"en_US" => "Top of form",
),
"active" => true
]
];
}
}