for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*************************************************************************************/
/* This file is part of the module TakeCustomerAccount */
/* */
/* Copyright (c) OpenStudio */
/* email : [email protected] */
/* 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
]
];
}