openstamanager/modules/aggiornamenti/src/Controlli/ColonneDuplicateViste.php

59 lines
2.0 KiB
PHP

<?php
/*
* OpenSTAManager: il software gestionale open source per l'assistenza tecnica e la fatturazione
* Copyright (C) DevCode s.r.l.
*
* 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, or
* (at your option) any later version.
*
* 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 <https://www.gnu.org/licenses/>.
*/
namespace Modules\Aggiornamenti\Controlli;
use Models\Module;
class ColonneDuplicateViste extends Controllo
{
public function getName()
{
return tr('Colonne duplicate per le Viste');
}
public function getType($record)
{
return 'warning';
}
public function check()
{
$duplicati = database()->fetchArray('SELECT `id_module`, `name` FROM `zz_views` LEFT JOIN `zz_views_lang` ON (`zz_views`.`id` = `zz_views_lang`.`id_record` AND `zz_views_lang`.`id_lang` = '.prepare(\Models\Locale::getDefault()->id).') GROUP BY `id_module`, `name` HAVING COUNT(`name`) > 1');
foreach ($duplicati as $colonna) {
$modulo = Module::find($colonna['id_module']);
$this->addResult([
'id' => $colonna['name'],
'nome' => $modulo->getTranslation('title').': '.$colonna['name'],
'descrizione' => tr('La colonna _NAME_ del modulo _MODULE_ esiste più volte', [
'_NAME_' => $colonna['name'],
'_MODULE_' => $modulo->getTranslation('title'),
]),
]);
}
}
public function execute($record, $params = [])
{
return false;
}
}