Quelques nouveaux fichiers et modules en conf

This commit is contained in:
2021-01-25 18:42:52 +01:00
parent 9b4d5e339b
commit af1552b390
212 changed files with 38073 additions and 817 deletions

View File

@@ -0,0 +1,93 @@
<?php
/*************************************************************************************/
/* */
/* Thelia */
/* */
/* Copyright (c) OpenStudio */
/* email : info@thelia.net */
/* web : http://www.thelia.net */
/* */
/* This program is free software; you can redistribute it and/or modify */
/* it under the terms of the GNU General Public License as published by */
/* the Free Software Foundation; either version 3 of the License */
/* */
/* This program is distributed in the hope that it will be useful, */
/* but WITHOUT ANY WARRANTY; without even the implied warranty of */
/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the */
/* GNU General Public License for more details. */
/* */
/* You should have received a copy of the GNU General Public License */
/* along with this program. If not, see <http://www.gnu.org/licenses/>. */
/* */
/*************************************************************************************/
/**
* Created by Franck Allimant, CQFDev <franck@cqfdev.fr>
* Date: 11/01/2016 11:57
*/
namespace Atos\Hook;
use Atos\Atos;
use Thelia\Core\Event\Hook\HookRenderEvent;
use Thelia\Core\Hook\BaseHook;
use Thelia\Model\ModuleConfig;
use Thelia\Model\ModuleConfigQuery;
class HookManager extends BaseHook
{
const MAX_TRACE_SIZE_IN_BYTES = 40000;
public function onModuleConfigure(HookRenderEvent $event)
{
$logFilePath = sprintf(THELIA_ROOT."log".DS."%s.log", Atos::MODULE_DOMAIN);
if (false !== $fh = @fopen($logFilePath, "r")) {
if (filesize($logFilePath) > self::MAX_TRACE_SIZE_IN_BYTES) {
fseek($fh, -self::MAX_TRACE_SIZE_IN_BYTES, SEEK_END);
$truncated = true;
} else {
$truncated = false;
}
$traces = implode(
'<br>',
array_reverse(
explode(
"\n",
fread($fh, self::MAX_TRACE_SIZE_IN_BYTES)
)
)
);
fclose($fh);
if (empty($traces)) {
$traces = $this->translator->trans("The log file is currently empty.", [], Atos::MODULE_DOMAIN);
} elseif ($truncated) {
$traces = $this->translator->trans(
"(Previous log is in %file file.)<br>",
['%file' => sprintf("log" . DS . "%s.log", Atos::MODULE_DOMAIN)],
Atos::MODULE_DOMAIN
) . $traces;
}
} else {
$traces = $this->translator->trans(
"The log file '%log' does not exists yet.",
['%log' => $logFilePath],
Atos::MODULE_DOMAIN
);
}
$vars = [ 'trace_content' => $traces ];
if (null !== $params = ModuleConfigQuery::create()->findByModuleId(Atos::getModuleId())) {
/** @var ModuleConfig $param */
foreach ($params as $param) {
$vars[ $param->getName() ] = $param->getValue();
}
}
$event->add(
$this->render('atos/module-configuration.html', $vars)
);
}
}