aboutsummaryrefslogtreecommitdiff
path: root/srcs/phpmyadmin/templates/table/search/zoom_result_form.twig
diff options
context:
space:
mode:
authorCharles <sircharlesaze@gmail.com>2020-01-09 10:55:03 +0100
committerCharles <sircharlesaze@gmail.com>2020-01-09 13:09:38 +0100
commit04d6d5ca99ebfd1cebb8ce06618fb3811fc1a8aa (patch)
tree5c691241355c943a3c68ddb06b8cf8c60aa11319 /srcs/phpmyadmin/templates/table/search/zoom_result_form.twig
parent7e0d85db834d6351ed85d01e5126ac31dc510b86 (diff)
downloadft_server-04d6d5ca99ebfd1cebb8ce06618fb3811fc1a8aa.tar.gz
ft_server-04d6d5ca99ebfd1cebb8ce06618fb3811fc1a8aa.tar.bz2
ft_server-04d6d5ca99ebfd1cebb8ce06618fb3811fc1a8aa.zip
phpmyadmin working
Diffstat (limited to 'srcs/phpmyadmin/templates/table/search/zoom_result_form.twig')
-rw-r--r--srcs/phpmyadmin/templates/table/search/zoom_result_form.twig86
1 files changed, 86 insertions, 0 deletions
diff --git a/srcs/phpmyadmin/templates/table/search/zoom_result_form.twig b/srcs/phpmyadmin/templates/table/search/zoom_result_form.twig
new file mode 100644
index 0000000..7543f85
--- /dev/null
+++ b/srcs/phpmyadmin/templates/table/search/zoom_result_form.twig
@@ -0,0 +1,86 @@
+<form method="post" action="tbl_zoom_select.php" name="displayResultForm" id="zoom_display_form" class="ajax">
+ {{ get_hidden_inputs(db, table) }}
+ <input type="hidden" name="goto" value="{{ goto }}">
+ <input type="hidden" name="back" value="tbl_zoom_select.php">
+
+ <fieldset id="displaySection">
+ <legend>{% trans 'Browse/Edit the points' %}</legend>
+
+ {# JSON encode the data(query result) #}
+ <center>
+ {% if zoom_submit and data is not empty %}
+ <div id="resizer">
+ <center>
+ <a id="help_dialog" href="#">
+ {% trans 'How to use' %}
+ </a>
+ </center>
+ <div id="querydata" class="hide">
+ {{ data_json }}
+ </div>
+ <div id="querychart"></div>
+ <button class="button-reset">
+ {% trans 'Reset zoom' %}
+ </button>
+ </div>
+ {% endif %}
+ </center>
+
+ {# Displays rows in point edit form #}
+ <div id="dataDisplay" class="hide">
+ <table>
+ <thead>
+ <tr>
+ <th>{% trans 'Column' %}</th>
+ <th>{% trans 'Null' %}</th>
+ <th>{% trans 'Value' %}</th>
+ </tr>
+ </thead>
+ <tbody>
+ {% for column_index in 0..column_names|length - 1 %}
+ {% set field_popup = column_names[column_index] %}
+ {% set foreign_data = get_foreign_data(
+ foreigners,
+ field_popup,
+ false,
+ '',
+ ''
+ ) %}
+ <tr class="noclick">
+ <th>{{ column_names[column_index] }}</th>
+ {# Null checkbox if column can be null #}
+ <th>
+ {% if column_null_flags[column_index] == 'YES' %}
+ <input type="checkbox" class="checkbox_null"
+ name="criteriaColumnNullFlags[{{ column_index }}]"
+ id="edit_fields_null_id_{{ column_index }}">
+ {% endif %}
+ </th>
+ {# Column's Input box #}
+ <th>
+ {% include 'table/search/input_box.twig' with {
+ 'str': '',
+ 'column_type': column_types[column_index],
+ 'column_id': column_types[column_index] ? 'edit_fieldID_' : 'fieldID_',
+ 'in_zoom_search_edit': true,
+ 'foreigners': foreigners,
+ 'column_name': field_popup,
+ 'column_name_hash': column_name_hashes[field_popup],
+ 'foreign_data': foreign_data,
+ 'table': table,
+ 'column_index': column_index,
+ 'foreign_max_limit': foreign_max_limit,
+ 'criteria_values': '',
+ 'db': db,
+ 'titles': titles,
+ 'in_fbs': false
+ } only %}
+ </th>
+ </tr>
+ {% endfor %}
+ </tbody>
+ </table>
+ </div>
+ <input type="hidden" id="queryID" name="sql_query">
+ </fieldset>
+</form>