Merge branch 'ent-9037-controles-pegados-en-agente-detail-view' into 'develop'
Ent 9037 controles pegados en agente detail view See merge request artica/pandorafms!4936
This commit is contained in:
commit
a40efcfee5
|
@ -249,26 +249,21 @@ echo '<form method="post" action="?sec=view&sec2=operation/agentes/estado_agente
|
||||||
|
|
||||||
echo '<table cellpadding="4" cellspacing="4" class="databox filters bolder mrgn_btn_10px" width="100%">';
|
echo '<table cellpadding="4" cellspacing="4" class="databox filters bolder mrgn_btn_10px" width="100%">';
|
||||||
|
|
||||||
echo '<tr><td class="nowrap mw180px padding-right-2-imp">';
|
echo '<tr><td class="nowrap w100px padding-right-2-imp">';
|
||||||
|
|
||||||
echo __('Group').' ';
|
echo __('Group').' '.' '.' ';
|
||||||
|
|
||||||
$groups = users_get_groups(false, $access);
|
$groups = users_get_groups(false, $access);
|
||||||
|
|
||||||
html_print_select_groups(false, $access, true, 'group_id', $group_id, 'this.form.submit()', '', '', false, false, true, '', false);
|
html_print_select_groups(false, $access, true, 'group_id', $group_id, 'this.form.submit()', '', '', false, false, true, '', false);
|
||||||
|
|
||||||
echo '</td><td class="nowrap">';
|
echo '</td><td class="nowrap">'.' '.' '.' '.' '.' ';
|
||||||
|
|
||||||
echo __('Recursion').' ';
|
echo __('Recursion').' '.' '.' ';
|
||||||
html_print_checkbox('recursion', 1, $recursion, false, false, 'this.form.submit()');
|
html_print_checkbox('recursion', 1, $recursion, false, false, 'this.form.submit()');
|
||||||
|
|
||||||
echo '</td><td class="nowrap">';
|
echo '</td><td class="nowrap">';
|
||||||
|
|
||||||
echo __('Search').' ';
|
|
||||||
html_print_input_text('search', $search, '', 15);
|
|
||||||
|
|
||||||
echo '</td><td class="nowrap">';
|
|
||||||
|
|
||||||
$fields = [];
|
$fields = [];
|
||||||
$fields[AGENT_STATUS_NORMAL] = __('Normal');
|
$fields[AGENT_STATUS_NORMAL] = __('Normal');
|
||||||
$fields[AGENT_STATUS_WARNING] = __('Warning');
|
$fields[AGENT_STATUS_WARNING] = __('Warning');
|
||||||
|
@ -277,12 +272,17 @@ $fields[AGENT_STATUS_UNKNOWN] = __('Unknown');
|
||||||
$fields[AGENT_STATUS_NOT_NORMAL] = __('Not normal');
|
$fields[AGENT_STATUS_NOT_NORMAL] = __('Not normal');
|
||||||
$fields[AGENT_STATUS_NOT_INIT] = __('Not init');
|
$fields[AGENT_STATUS_NOT_INIT] = __('Not init');
|
||||||
|
|
||||||
echo __('Status').' ';
|
echo __('Status').' '.' '.' ';
|
||||||
html_print_select($fields, 'status', $status, 'this.form.submit()', __('All'), AGENT_STATUS_ALL, false, false, true, '', false, 'width: 90px;');
|
html_print_select($fields, 'status', $status, 'this.form.submit()', __('All'), AGENT_STATUS_ALL, false, false, true, '', false, 'width: 90px;');
|
||||||
|
|
||||||
echo '</td><td class="nowrap">';
|
echo '</td><td class="nowrap w100px">';
|
||||||
|
|
||||||
echo __('Search in custom fields').' ';
|
echo __('Search').' '.' '.' ';
|
||||||
|
html_print_input_text('search', $search, '', 15);
|
||||||
|
|
||||||
|
echo '</td><td class="nowrap w100px">';
|
||||||
|
|
||||||
|
echo __('Search in custom fields').' '.' '.' ';
|
||||||
html_print_input_text('search_custom', $search_custom, '', 15);
|
html_print_input_text('search_custom', $search_custom, '', 15);
|
||||||
|
|
||||||
echo '</td><td class="nowrap">';
|
echo '</td><td class="nowrap">';
|
||||||
|
|
Loading…
Reference in New Issue