mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-09-25 10:59:15 +02:00
Events
This commit is contained in:
parent
9aa5d76963
commit
ae6159c7a1
@ -778,7 +778,7 @@ $table->data[12][0] = html_print_label_input_block(
|
|||||||
if (!is_metaconsole()) {
|
if (!is_metaconsole()) {
|
||||||
$table->data[12][1] = html_print_label_input_block(
|
$table->data[12][1] = html_print_label_input_block(
|
||||||
__('Module search'),
|
__('Module search'),
|
||||||
'<div class="w100p">'.html_print_autocomplete_modules(
|
'<div class="w100p module-search">'.html_print_autocomplete_modules(
|
||||||
'module_search',
|
'module_search',
|
||||||
$text_module,
|
$text_module,
|
||||||
false,
|
false,
|
||||||
|
@ -3453,7 +3453,7 @@ function events_page_responses($event)
|
|||||||
__('Update'),
|
__('Update'),
|
||||||
'status_button',
|
'status_button',
|
||||||
false,
|
false,
|
||||||
'event_change_status(\''.$event['similar_ids'].'\','.$event['server_id'].');',
|
'event_change_status("'.$event['similar_ids'].'",'.$event['server_id'].');',
|
||||||
[
|
[
|
||||||
'icon' => 'next',
|
'icon' => 'next',
|
||||||
'mode' => 'link',
|
'mode' => 'link',
|
||||||
@ -3484,7 +3484,7 @@ function events_page_responses($event)
|
|||||||
__('Add comment'),
|
__('Add comment'),
|
||||||
'comment_button',
|
'comment_button',
|
||||||
false,
|
false,
|
||||||
'$(\'#link_comments\').trigger(\'click\');',
|
'$("#link_comments").trigger("click");',
|
||||||
[
|
[
|
||||||
'icon' => 'next',
|
'icon' => 'next',
|
||||||
'mode' => 'link',
|
'mode' => 'link',
|
||||||
@ -3511,7 +3511,7 @@ function events_page_responses($event)
|
|||||||
__('Delete event'),
|
__('Delete event'),
|
||||||
'delete_button',
|
'delete_button',
|
||||||
false,
|
false,
|
||||||
'if(!confirm(\''.__('Are you sure?').'\')) { return false; } this.form.submit();',
|
'if(!confirm("'.__('Are you sure?').'")) { return false; } this.form.submit();',
|
||||||
[
|
[
|
||||||
'icon' => 'cancel',
|
'icon' => 'cancel',
|
||||||
'mode' => 'link',
|
'mode' => 'link',
|
||||||
@ -4260,7 +4260,7 @@ function events_page_details($event, $server_id=0)
|
|||||||
__('View custom fields'),
|
__('View custom fields'),
|
||||||
'custom_button',
|
'custom_button',
|
||||||
false,
|
false,
|
||||||
'$(\'#link_custom_fields\').trigger(\'click\');',
|
'$("#link_custom_fields").trigger("click");',
|
||||||
[ 'mode' => 'link' ],
|
[ 'mode' => 'link' ],
|
||||||
true
|
true
|
||||||
);
|
);
|
||||||
@ -5172,7 +5172,7 @@ function events_page_comments($event, $ajax=false, $groupedComments=[])
|
|||||||
__('Add comment'),
|
__('Add comment'),
|
||||||
'comment_button',
|
'comment_button',
|
||||||
false,
|
false,
|
||||||
'event_comment(\''.base64_encode(json_encode($event)).'\');',
|
'event_comment("'.base64_encode(json_encode($event)).'");',
|
||||||
[
|
[
|
||||||
'icon' => 'next',
|
'icon' => 'next',
|
||||||
'mode' => 'mini secondary',
|
'mode' => 'mini secondary',
|
||||||
@ -5779,7 +5779,7 @@ function get_row_response_action(
|
|||||||
__('Execute again'),
|
__('Execute again'),
|
||||||
'btn_str',
|
'btn_str',
|
||||||
false,
|
false,
|
||||||
'perform_response(\''.base64_encode(json_encode($event_response)).'\','.$response_id.',\''.trim($index).'\')',
|
'perform_response("'.base64_encode(json_encode($event_response)).'",'.$response_id.',"'.trim($index).'")',
|
||||||
[
|
[
|
||||||
'icon' => 'next',
|
'icon' => 'next',
|
||||||
'mode' => 'mini secondary',
|
'mode' => 'mini secondary',
|
||||||
|
@ -67,7 +67,7 @@ function show_event_dialog(event, dialog_page) {
|
|||||||
background: "black"
|
background: "black"
|
||||||
},
|
},
|
||||||
width: 710,
|
width: 710,
|
||||||
height: 600,
|
height: 650,
|
||||||
autoOpen: true,
|
autoOpen: true,
|
||||||
open: function() {
|
open: function() {
|
||||||
if (
|
if (
|
||||||
|
@ -173,10 +173,6 @@ fieldset {
|
|||||||
max-width: 10px;
|
max-width: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.fixed_filter_bar:has(div > div.filter-datatable-submain > form#events_form) {
|
|
||||||
margin-bottom: 0px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.fixed_filter_bar > div.white_table_graph_header:has(div.filter_summary) {
|
.fixed_filter_bar > div.white_table_graph_header:has(div.filter_summary) {
|
||||||
padding: 5px 20px;
|
padding: 5px 20px;
|
||||||
}
|
}
|
||||||
@ -524,3 +520,7 @@ td#save_filter_form-0-0 > input[type="radio"],
|
|||||||
td#save_filter_form-0-1 > input[type="radio"] {
|
td#save_filter_form-0-1 > input[type="radio"] {
|
||||||
height: 14px;
|
height: 14px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.module-search > input[type="text"] {
|
||||||
|
margin-bottom: 6px;
|
||||||
|
}
|
||||||
|
@ -688,7 +688,7 @@ table.events-filters-create
|
|||||||
> div
|
> div
|
||||||
> div
|
> div
|
||||||
> .ui-autocomplete-input {
|
> .ui-autocomplete-input {
|
||||||
width: 94%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
table.events-filters-create > tbody > tr > td > div.flex-row > div {
|
table.events-filters-create > tbody > tr > td > div.flex-row > div {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user