Wip command center, Plugins in meta
This commit is contained in:
parent
841842da59
commit
c6877154fb
|
@ -112,7 +112,6 @@ $edit_file = get_parameter('edit_file', false);
|
||||||
$update_file = get_parameter('update_file', false);
|
$update_file = get_parameter('update_file', false);
|
||||||
$plugin_command = get_parameter('plugin_command', '');
|
$plugin_command = get_parameter('plugin_command', '');
|
||||||
$tab = get_parameter('tab', '');
|
$tab = get_parameter('tab', '');
|
||||||
$deploy_plugin = get_parameter('deploy_plugin', 0);
|
|
||||||
|
|
||||||
if ($view != '') {
|
if ($view != '') {
|
||||||
$form_id = $view;
|
$form_id = $view;
|
||||||
|
@ -826,19 +825,7 @@ if (($create != '') || ($view != '')) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($deploy_plugin) {
|
// If not edition or insert, then list available plugins.
|
||||||
if (is_metaconsole()) {
|
|
||||||
enterprise_include_once('include/functions_plugins.php');
|
|
||||||
$result = plugins_deploy_plugin($deploy_plugin);
|
|
||||||
if (!$result) {
|
|
||||||
ui_print_error_message(__('Problem deploying plugin'));
|
|
||||||
} else {
|
|
||||||
ui_print_success_message(__('Plugin deployed successfully'));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// If not edition or insert, then list available plugins
|
|
||||||
$rows = db_get_all_rows_sql('SELECT * FROM tplugin ORDER BY name');
|
$rows = db_get_all_rows_sql('SELECT * FROM tplugin ORDER BY name');
|
||||||
|
|
||||||
if ($rows !== false) {
|
if ($rows !== false) {
|
||||||
|
@ -926,16 +913,6 @@ if (($create != '') || ($view != '')) {
|
||||||
'class' => 'invert_filter',
|
'class' => 'invert_filter',
|
||||||
]
|
]
|
||||||
).'</a>';
|
).'</a>';
|
||||||
if (is_metaconsole()) {
|
|
||||||
echo " <a href='index.php?sec=$sec&sec2=godmode/servers/plugin&tab=$tab&deploy_plugin=".$row['id'].'&tab=plugins&pure='.$config['pure']."'>".html_print_image(
|
|
||||||
'images/deploy.png',
|
|
||||||
true,
|
|
||||||
[
|
|
||||||
'title' => __('Deploy'),
|
|
||||||
'width' => '21 px',
|
|
||||||
]
|
|
||||||
).'</a> ';
|
|
||||||
}
|
|
||||||
|
|
||||||
echo '</td>';
|
echo '</td>';
|
||||||
}
|
}
|
||||||
|
|
|
@ -33,7 +33,7 @@ global $config;
|
||||||
check_login();
|
check_login();
|
||||||
|
|
||||||
if ((bool) check_acl($config['id_user'], 0, 'PM') === false
|
if ((bool) check_acl($config['id_user'], 0, 'PM') === false
|
||||||
&& (bool) check_acl($config['id_user'], 0, 'AW') === false
|
|| (bool) check_acl($config['id_user'], 0, 'AW') === false
|
||||||
) {
|
) {
|
||||||
db_pandora_audit(
|
db_pandora_audit(
|
||||||
'ACL Violation',
|
'ACL Violation',
|
||||||
|
|
|
@ -3251,12 +3251,6 @@ function config_process_config()
|
||||||
config_update_value('ehorus_req_timeout', 5);
|
config_update_value('ehorus_req_timeout', 5);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (is_metaconsole() === true) {
|
|
||||||
if (!isset($config['metaconsole_deploy_inventory_plugin'])) {
|
|
||||||
config_update_value('metaconsole_deploy_inventory_plugin', 0);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Integria.
|
// Integria.
|
||||||
if (!isset($config['integria_user_level_conf'])) {
|
if (!isset($config['integria_user_level_conf'])) {
|
||||||
config_update_value('integria_user_level_conf', 0);
|
config_update_value('integria_user_level_conf', 0);
|
||||||
|
|
Loading…
Reference in New Issue