mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-07-30 17:25:26 +02:00
10457-Audit log, save/load filters
This commit is contained in:
parent
78eccfd73b
commit
87e82c0410
@ -135,18 +135,15 @@ if ($load_filter_modal) {
|
|||||||
$table->width = '100%';
|
$table->width = '100%';
|
||||||
$table->cellspacing = 4;
|
$table->cellspacing = 4;
|
||||||
$table->cellpadding = 4;
|
$table->cellpadding = 4;
|
||||||
$table->class = 'databox';
|
$table->class = 'databox no_border';
|
||||||
if (is_metaconsole()) {
|
if (is_metaconsole()) {
|
||||||
$table->cellspacing = 0;
|
$table->cellspacing = 0;
|
||||||
$table->cellpadding = 0;
|
$table->cellpadding = 0;
|
||||||
$table->class = 'databox filters';
|
$table->class = 'databox filters no_border';
|
||||||
}
|
}
|
||||||
|
|
||||||
$table->styleTable = 'font-weight: bold; color: #555; text-align:left;';
|
$table->styleTable = 'font-weight: bold; color: #555; text-align:left;';
|
||||||
$filter_id_width = '200px';
|
$filter_id_width = 'w100p';
|
||||||
if (is_metaconsole()) {
|
|
||||||
$filter_id_width = '150px';
|
|
||||||
}
|
|
||||||
|
|
||||||
$data = [];
|
$data = [];
|
||||||
$table->rowid[3] = 'update_filter_row1';
|
$table->rowid[3] = 'update_filter_row1';
|
||||||
@ -165,11 +162,17 @@ if ($load_filter_modal) {
|
|||||||
false,
|
false,
|
||||||
'margin-left:5px; width:'.$filter_id_width.';'
|
'margin-left:5px; width:'.$filter_id_width.';'
|
||||||
);
|
);
|
||||||
|
|
||||||
|
$table->rowclass[] = 'display-grid';
|
||||||
$data[1] = html_print_submit_button(
|
$data[1] = html_print_submit_button(
|
||||||
__('Load filter'),
|
__('Load filter'),
|
||||||
'load_filter',
|
'load_filter',
|
||||||
false,
|
false,
|
||||||
'class="sub upd" onclick="load_filter_values()"',
|
[
|
||||||
|
'class' => 'mini w25p',
|
||||||
|
'style' => 'margin-left: 73%',
|
||||||
|
'onclick' => 'load_filter_values();',
|
||||||
|
],
|
||||||
true
|
true
|
||||||
);
|
);
|
||||||
$data[1] .= html_print_input_hidden('load_filter', 1, true);
|
$data[1] .= html_print_input_hidden('load_filter', 1, true);
|
||||||
@ -186,7 +189,7 @@ function show_filter() {
|
|||||||
draggable: true,
|
draggable: true,
|
||||||
modal: false,
|
modal: false,
|
||||||
closeOnEscape: true,
|
closeOnEscape: true,
|
||||||
width: 450
|
width: 500
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -238,7 +241,7 @@ $(document).ready (function() {
|
|||||||
|
|
||||||
|
|
||||||
if ($save_filter_modal) {
|
if ($save_filter_modal) {
|
||||||
echo '<div id="save-filter-select" style="width:350px;">';
|
echo '<div id="save-filter-select" style="width:600px;">';
|
||||||
|
|
||||||
if (check_acl($config['id_user'], 0, 'EW') === 1 || check_acl($config['id_user'], 0, 'EM') === 1) {
|
if (check_acl($config['id_user'], 0, 'EW') === 1 || check_acl($config['id_user'], 0, 'EM') === 1) {
|
||||||
echo '<div id="info_box"></div>';
|
echo '<div id="info_box"></div>';
|
||||||
@ -247,9 +250,9 @@ if ($save_filter_modal) {
|
|||||||
$table->width = '100%';
|
$table->width = '100%';
|
||||||
$table->cellspacing = 4;
|
$table->cellspacing = 4;
|
||||||
$table->cellpadding = 4;
|
$table->cellpadding = 4;
|
||||||
$table->class = 'databox';
|
$table->class = 'databox no_border';
|
||||||
if (is_metaconsole()) {
|
if (is_metaconsole()) {
|
||||||
$table->class = 'databox filters';
|
$table->class = 'databox filters no_border';
|
||||||
$table->cellspacing = 0;
|
$table->cellspacing = 0;
|
||||||
$table->cellpadding = 0;
|
$table->cellpadding = 0;
|
||||||
}
|
}
|
||||||
@ -289,7 +292,11 @@ if ($save_filter_modal) {
|
|||||||
__('Save filter'),
|
__('Save filter'),
|
||||||
'save_filter',
|
'save_filter',
|
||||||
false,
|
false,
|
||||||
'class="sub wand" onclick="save_new_filter();"',
|
[
|
||||||
|
'class' => 'mini w25p',
|
||||||
|
'style' => 'margin-left: 56%',
|
||||||
|
'onclick' => 'save_new_filter();',
|
||||||
|
],
|
||||||
true
|
true
|
||||||
);
|
);
|
||||||
|
|
||||||
@ -317,11 +324,16 @@ if ($save_filter_modal) {
|
|||||||
0,
|
0,
|
||||||
true
|
true
|
||||||
);
|
);
|
||||||
|
$table->rowclass[] = 'display-grid';
|
||||||
$data[1] = html_print_submit_button(
|
$data[1] = html_print_submit_button(
|
||||||
__('Update filter'),
|
__('Update filter'),
|
||||||
'update_filter',
|
'update_filter',
|
||||||
false,
|
false,
|
||||||
'class="sub upd" onclick="save_update_filter();"',
|
[
|
||||||
|
'class' => 'mini w25p',
|
||||||
|
'style' => 'margin-left: 56%',
|
||||||
|
'onclick' => 'save_update_filter();',
|
||||||
|
],
|
||||||
true
|
true
|
||||||
);
|
);
|
||||||
|
|
||||||
@ -359,7 +371,8 @@ function show_save_filter() {
|
|||||||
resizable: true,
|
resizable: true,
|
||||||
draggable: true,
|
draggable: true,
|
||||||
modal: false,
|
modal: false,
|
||||||
closeOnEscape: true
|
closeOnEscape: true,
|
||||||
|
width: 380
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -437,7 +437,7 @@ class AuditLog extends HTML
|
|||||||
$('#audit_logs').css('width','95% !important');
|
$('#audit_logs').css('width','95% !important');
|
||||||
});
|
});
|
||||||
|
|
||||||
$('#save-filter').click(function() {
|
$('#button-save-filter').click(function() {
|
||||||
if ($('#save-filter-select').length) {
|
if ($('#save-filter-select').length) {
|
||||||
$('#save-filter-select').dialog({
|
$('#save-filter-select').dialog({
|
||||||
width: "20%",
|
width: "20%",
|
||||||
@ -495,7 +495,7 @@ class AuditLog extends HTML
|
|||||||
});
|
});
|
||||||
|
|
||||||
/* Filter management */
|
/* Filter management */
|
||||||
$('#load-filter').click(function (){
|
$('#button-load-filter').click(function (){
|
||||||
if($('#load-filter-select').length) {
|
if($('#load-filter-select').length) {
|
||||||
$('#load-filter-select').dialog({width: "20%",
|
$('#load-filter-select').dialog({width: "20%",
|
||||||
maxWidth: "25%",
|
maxWidth: "25%",
|
||||||
|
@ -86,6 +86,43 @@
|
|||||||
font-weight: 900;
|
font-weight: 900;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
@font-face {
|
||||||
|
font-family: "lato-italic";
|
||||||
|
src: url("../fonts/Lato-Italic.woff") format("woff");
|
||||||
|
font-weight: 400;
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: "lato";
|
||||||
|
src: url("../fonts/Lato-LightItalic.woff") format("woff");
|
||||||
|
font-weight: 300;
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: "lato";
|
||||||
|
src: url("../fonts/Lato-ThinItalic.woff") format("woff");
|
||||||
|
font-weight: 100;
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: "lato";
|
||||||
|
src: url("../fonts/Lato-BoldItalic.woff") format("woff");
|
||||||
|
font-weight: 700;
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: "lato";
|
||||||
|
src: url("../fonts/Lato-BlackItalic.woff") format("woff");
|
||||||
|
font-weight: 900;
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
*/
|
||||||
|
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: "source-code";
|
font-family: "source-code";
|
||||||
src: url("../fonts/SourceCodePro.woff") format("woff");
|
src: url("../fonts/SourceCodePro.woff") format("woff");
|
||||||
|
@ -648,10 +648,6 @@ td#save_filter_form-1-0 > b {
|
|||||||
line-height: 16px;
|
line-height: 16px;
|
||||||
}
|
}
|
||||||
|
|
||||||
tr#save_filter_row1 {
|
|
||||||
display: flex !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
td#save_filter_form-0-0,
|
td#save_filter_form-0-0,
|
||||||
td#save_filter_form-0-1,
|
td#save_filter_form-0-1,
|
||||||
td#save_filter_form-1-0 > input#text-id_name,
|
td#save_filter_form-1-0 > input#text-id_name,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user