/usr/share/phpmyadmin/templates
NameSizeModeActions
columns_definitions/-0755rm
components/-0755rm
config/-0755rm
console/-0755rm
database/-0755rm
display/-0755rm
encoding/-0755rm
error/-0755rm
export/-0755rm
home/-0755rm
import/-0755rm
javascript/-0755rm
login/-0755rm
menu/-0755rm
navigation/-0755rm
plugins/-0755rm
preferences/-0755rm
relation/-0755rm
server/-0755rm
setup/-0755rm
sql/-0755rm
table/-0755rm
test/-0755rm
changelog.twig4750644editdlrm
create_tracking_version.twig37900644editdlrm
export.twig162310644editdlrm
file_select_options.twig1520644editdlrm
filter.twig3740644editdlrm
footer.twig3880644editdlrm
gis_data_editor_form.twig125060644editdlrm
header.twig25040644editdlrm
header_location.twig6520644editdlrm
import.twig107140644editdlrm
import_status.twig990644editdlrm
indexes.twig41470644editdlrm
message.twig800644editdlrm
preview_sql.twig3010644editdlrm
scripts.twig8020644editdlrm
select_all.twig3850644editdlrm
select_lang.twig9000644editdlrm
start_and_number_of_rows_panel.twig8080644editdlrm
themes.twig2330644editdlrm
theme_preview.twig5020644editdlrm
top_menu.twig10770644editdlrm
transformation_overview.twig12930644editdlrm
user_password.twig830644editdlrm
view_create.twig48210644editdlrm
Edit: /usr/share/phpmyadmin/templates/gis_data_editor_form.twig (12506B)

{{ 'Value for the column "%s"'|trans|format(field) }}

{# The input field to which the final result should be added and corresponding null checkbox #} {% if input_name is not null %} {% endif %} {{ get_hidden_inputs() }} {# Visualization section #}
{{ visualization|raw }}
{# End of visualization section #} {# Header section - Inclueds GIS type selector and input field for SRID #}
{# End of header section #} {# Data section #}
{% if geom_type == 'GEOMETRYCOLLECTION' %} {% endif %} {% for a in 0..geom_count - 1 %} {% if gis_data[a] is not null %} {% if geom_type == 'GEOMETRYCOLLECTION' %}

{{ 'Geometry %d:'|trans|format(a + 1) }}
{% if gis_data[a]['gis_type'] is not null %} {% set type = gis_data[a]['gis_type'] %} {% else %} {% set type = gis_types[0] %} {% endif %} {% else %} {% set type = geom_type %} {% endif %} {% if type == 'POINT' %}
{% trans 'Point:' %} {% elseif type == 'MULTIPOINT' or type == 'LINESTRING' %} {% set no_of_points = gis_data[a][type]['no_of_points'] ?? 1 %} {% if type == 'LINESTRING' and no_of_points < 2 %} {% set no_of_points = 2 %} {% endif %} {% if type == 'MULTIPOINT' and no_of_points < 1 %} {% set no_of_points = 1 %} {% endif %} {% if gis_data[a][type]['add_point'] is not null %} {% set no_of_points = no_of_points + 1 %} {% endif %} {% for i in 0..no_of_points - 1 %}
{{ 'Point %d:'|trans|format(i + 1) }} {% endfor %} {% elseif type == 'MULTILINESTRING' or type == 'POLYGON' %} {% set no_of_lines = gis_data[a][type]['no_of_lines'] ?? 1 %} {% if no_of_lines < 1 %} {% set no_of_lines = 1 %} {% endif %} {% if gis_data[a][type]['add_line'] is not null %} {% set no_of_lines = no_of_lines + 1 %} {% endif %} {% for i in 0..no_of_lines - 1 %}
{% if type == 'MULTILINESTRING' %} {{ 'Linestring %d:'|trans|format(i + 1) }} {% elseif i == 0 %} {% trans 'Outer ring:' %} {% else %} {{ 'Inner ring %d:'|trans|format(i) }} {% endif %} {% set no_of_points = gis_data[a][type][i]['no_of_points'] ?? 2 %} {% if type == 'MULTILINESTRING' and no_of_points < 2 %} {% set no_of_points = 2 %} {% endif %} {% if type == 'POLYGON' and no_of_points < 4 %} {% set no_of_points = 4 %} {% endif %} {% if gis_data[a][type][i]['add_point'] is not null %} {% set no_of_points = no_of_points + 1 %} {% endif %} {% for j in 0..no_of_points - 1 %}
{{ 'Point %d:'|trans|format(j + 1) }} {% endfor %} {% endfor %}
{% elseif type == 'MULTIPOLYGON' %} {% set no_of_polygons = gis_data[a][type]['no_of_polygons'] ?? 1 %} {% if no_of_polygons < 1 %} {% set no_of_polygons = 1 %} {% endif %} {% if gis_data[a][type]['add_polygon'] is not null %} {% set no_of_polygons = no_of_polygons + 1 %} {% endif %} {% for k in 0..no_of_polygons - 1 %}
{{ 'Polygon %d:'|trans|format(k + 1) }} {% set no_of_lines = gis_data[a][type][k]['no_of_lines'] ?? 1 %} {% if no_of_lines < 1 %} {% set no_of_lines = 1 %} {% endif %} {% if gis_data[a][type][k]['add_line'] is not null %} {% set no_of_lines = no_of_lines + 1 %} {% endif %} {% for i in 0..no_of_lines - 1 %}

{% if i == 0 %} {% trans 'Outer ring:' %} {% else %} {{ 'Inner ring %d:'|trans|format(i) }} {% endif %} {% set no_of_points = gis_data[a][type][k][i]['no_of_points'] ?? 4 %} {% if no_of_points < 4 %} {% set no_of_points = 4 %} {% endif %} {% if gis_data[a][type][k][i]['add_point'] is not null %} {% set no_of_points = no_of_points + 1 %} {% endif %} {% for j in 0..no_of_points - 1 %}
{{ 'Point %d:'|trans|format(j + 1) }} {% endfor %} {% endfor %}

{% endfor %}
{% endif %} {% endif %} {% endfor %} {% if geom_type == 'GEOMETRYCOLLECTION' %}

{% endif %}
{# End of data section #}

{% trans 'Output' %}

{% trans 'Choose "GeomFromText" from the "Function" column and paste the string below into the "Value" field.' %}