minor change

This commit is contained in:
alejandro.campos@artica.es 2023-12-05 11:38:11 +01:00
parent 60137eb300
commit 433ce7971f
1 changed files with 21 additions and 0 deletions

View File

@ -135,6 +135,27 @@ class Custom extends Wizard
Wizard::printBigButtonsList($wiz_data);
$not_defined_extensions = $extensions->loadExtensions(true);
$output = html_print_div(
[
'class' => 'agent_details_line',
'content' => ui_toggle(
Wizard::printBigButtonsList($not_defined_extensions, true),
'<span class="subsection_header_title">'.__('Not defined applications').'</span>',
'not_defined_apps',
'not_defined_apps',
false,
true,
'',
'',
'box-flat white_table_graph w100p'
),
],
);
echo $output;
echo '<div class="app_mssg"><i>*'.__('All company names used here are for identification purposes only. Use of these names, logos, and brands does not imply endorsement.').'</i></div>';
return $result;
}