Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.16.31.119
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
myadmin /
templates /
table /
search /
Delete
Unzip
Name
Size
Permission
Date
Action
column_comparison_operators.twig
161
B
-rw-r--r--
2021-02-05 18:28
fields_table.twig
1.09
KB
-rw-r--r--
2021-02-05 18:28
form_tag.twig
268
B
-rw-r--r--
2021-02-05 18:28
geom_func.twig
707
B
-rw-r--r--
2021-02-05 18:28
input_box.twig
4.07
KB
-rw-r--r--
2021-02-05 18:28
replace_preview.twig
1.43
KB
-rw-r--r--
2021-02-05 18:28
rows_normal.twig
1.49
KB
-rw-r--r--
2021-02-05 18:28
rows_zoom.twig
2.7
KB
-rw-r--r--
2021-02-05 18:28
selection_form.twig
8.65
KB
-rw-r--r--
2021-02-05 18:28
zoom_result_form.twig
3.71
KB
-rw-r--r--
2021-02-05 18:28
Save
Rename
{# Get already set search criteria (if any) #} {% set type = [] %} {% set collation = [] %} {% set func = [] %} {% set value = [] %} {% for i in 0..3 %} {# After X-Axis and Y-Axis column rows, display additional criteria option #} {% if i == 2 %} <tr> <td> {% trans 'Additional search criteria' %} </td> </tr> {% endif %} <tr class="noclick"> <th> <select name="criteriaColumnNames[]" id="tableid_{{ i }}" > <option value="pma_null"> {% trans 'None' %} </option> {% for j in 0..column_names|length - 1 %} {% if criteria_column_names[i] is defined and criteria_column_names[i] == column_names[j] %} <option value="{{ column_names[j] }}" selected="selected"> {{ column_names[j] }} </option> {% else %} <option value="{{ column_names[j] }}"> {{ column_names[j] }} </option> {% endif %} {% endfor %} </select> </th> {% if criteria_column_names[i] is defined and criteria_column_names[i] != 'pma_null' %} {% set key = keys[criteria_column_names[i]] %} {% set properties = self.getColumnProperties(i, key) %} {% set type = type|merge({(i): properties['type']}) %} {% set collation = collation|merge({(i): properties['collation']}) %} {% set func = func|merge({(i): properties['func']}) %} {% set value = value|merge({(i): properties['value']}) %} {% endif %} {# Column type #} <td dir="ltr"> {{ type[i] is defined ? type[i] }} </td> {# Column Collation #} <td> {{ collation[i] is defined ? collation[i] }} </td> {# Select options for column operators #} <td> {{ func[i] is defined ? func[i]|raw }} </td> {# Inputbox for search criteria value #} <td> {{ value[i] is defined ? value[i]|raw }} </td> <td> {# Displays hidden fields #} <input type="hidden" name="criteriaColumnTypes[{{ i }}]" id="types_{{ i }}" {%- if criteria_column_types[i] is defined %} value="{{ criteria_column_types[i] }}" {%- endif %}> <input type="hidden" name="criteriaColumnCollations[{{ i }}]" id="collations_{{ i }}"> </td> </tr> {% endfor %}