Merge branch 'ent-11405-no-hay-boton-para-eliminar-plugins-en-entornos-de-metaconsola' into 'develop'

Ent 11405 no hay boton para eliminar plugins en entornos de metaconsola

See merge request artica/pandorafms!5991
This commit is contained in:
Matias Didier 2023-05-30 11:24:17 +00:00
commit f162476ee0
1 changed files with 2 additions and 2 deletions

View File

@ -978,14 +978,14 @@ if (empty($create) === false || empty($view) === false) {
if ($rows !== false) {
$pluginTable = new stdClass();
$pluginTable->id = 'plugin_table';
$pluginTable->class = (is_metaconsole() === true) ? 'databox data' : 'info_table';
$pluginTable->class = 'info_table';
$pluginTable->head = [];
$pluginTable->head[0] = __('Name');
$pluginTable->head[1] = __('Type');
$pluginTable->head[2] = __('Command');
if ($management_allowed === true) {
$pluginTable->head[3] = '<span title="'.__('Operations').'">'.__('Op.').'</span>';
$pluginTable->head[3] = __('Operations');
}
$pluginTable->data = [];