';
echo '
';
printf(
__('Value for the column "%s"'),
htmlspecialchars($_REQUEST['field'])
);
echo '
';
echo '
';
// The input field to which the final result should be added
// and corresponding null checkbox
if (isset($_REQUEST['input_name'])) {
echo '
';
}
echo PMA_URL_getHiddenInputs();
echo '';
echo '
';
echo $visualization;
echo '
';
echo '
';
echo '
';
echo '
';
echo '';
echo '';
echo '
';
echo '';
echo '';
echo '';
echo '';
echo '';
echo '';
echo '
';
$geom_count = 1;
if ($geom_type == 'GEOMETRYCOLLECTION') {
$geom_count = (isset($gis_data[$geom_type]['geom_count']))
? $gis_data[$geom_type]['geom_count'] : 1;
if (isset($gis_data[$geom_type]['add_geom'])) {
$geom_count++;
}
echo '';
}
for ($a = 0; $a < $geom_count; $a++) {
if ($geom_type == 'GEOMETRYCOLLECTION') {
echo '
';
printf(__('Geometry %d:'), $a + 1);
echo '
';
if (isset($gis_data[$a]['gis_type'])) {
$type = $gis_data[$a]['gis_type'];
} else {
$type = $gis_types[0];
}
echo '';
} else {
$type = $geom_type;
}
if ($type == 'POINT') {
echo '
';
echo __('Point:');
echo '';
echo '';
echo '';
echo '';
} elseif ($type == 'MULTIPOINT' || $type == 'LINESTRING') {
$no_of_points = isset($gis_data[$a][$type]['no_of_points'])
? $gis_data[$a][$type]['no_of_points'] : 1;
if ($type == 'LINESTRING' && $no_of_points < 2) {
$no_of_points = 2;
}
if ($type == 'MULTIPOINT' && $no_of_points < 1) {
$no_of_points = 1;
}
if (isset($gis_data[$a][$type]['add_point'])) {
$no_of_points++;
}
echo '';
for ($i = 0; $i < $no_of_points; $i++) {
echo '
';
printf(__('Point %d'), $i + 1);
echo ': ';
echo '';
echo '';
echo '';
echo '';
}
echo '';
} elseif ($type == 'MULTILINESTRING' || $type == 'POLYGON') {
$no_of_lines = isset($gis_data[$a][$type]['no_of_lines'])
? $gis_data[$a][$type]['no_of_lines'] : 1;
if ($no_of_lines < 1) {
$no_of_lines = 1;
}
if (isset($gis_data[$a][$type]['add_line'])) {
$no_of_lines++;
}
echo '';
for ($i = 0; $i < $no_of_lines; $i++) {
echo '
';
if ($type == 'MULTILINESTRING') {
printf(__('Linestring %d:'), $i + 1);
} else {
if ($i == 0) {
echo __('Outer ring:');
} else {
printf(__('Inner ring %d:'), $i);
}
}
$no_of_points = isset($gis_data[$a][$type][$i]['no_of_points'])
? $gis_data[$a][$type][$i]['no_of_points'] : 2;
if ($type == 'MULTILINESTRING' && $no_of_points < 2) {
$no_of_points = 2;
}
if ($type == 'POLYGON' && $no_of_points < 4) {
$no_of_points = 4;
}
if (isset($gis_data[$a][$type][$i]['add_point'])) {
$no_of_points++;
}
echo '';
for ($j = 0; $j < $no_of_points; $j++) {
echo('
');
printf(__('Point %d'), $j + 1);
echo ': ';
echo '';
echo '';
echo '';
echo '';
}
echo '';
}
$caption = ($type == 'MULTILINESTRING')
? __('Add a linestring')
: __('Add an inner ring');
echo '
';
echo '';
} elseif ($type == 'MULTIPOLYGON') {
$no_of_polygons = isset($gis_data[$a][$type]['no_of_polygons'])
? $gis_data[$a][$type]['no_of_polygons'] : 1;
if ($no_of_polygons < 1) {
$no_of_polygons = 1;
}
if (isset($gis_data[$a][$type]['add_polygon'])) {
$no_of_polygons++;
}
echo '';
for ($k = 0; $k < $no_of_polygons; $k++) {
echo '
';
printf(__('Polygon %d:'), $k + 1);
$no_of_lines = isset($gis_data[$a][$type][$k]['no_of_lines'])
? $gis_data[$a][$type][$k]['no_of_lines'] : 1;
if ($no_of_lines < 1) {
$no_of_lines = 1;
}
if (isset($gis_data[$a][$type][$k]['add_line'])) {
$no_of_lines++;
}
echo '';
for ($i = 0; $i < $no_of_lines; $i++) {
echo '
';
if ($i == 0) {
echo __('Outer ring:');
} else {
printf(__('Inner ring %d:'), $i);
}
$no_of_points = isset($gis_data[$a][$type][$k][$i]['no_of_points'])
? $gis_data[$a][$type][$k][$i]['no_of_points'] : 4;
if ($no_of_points < 4) {
$no_of_points = 4;
}
if (isset($gis_data[$a][$type][$k][$i]['add_point'])) {
$no_of_points++;
}
echo '';
for ($j = 0; $j < $no_of_points; $j++) {
echo '
';
printf(__('Point %d'), $j + 1);
echo ': ';
echo '';
echo '';
echo '';
echo '';
}
echo '';
}
echo '
';
echo '';
echo '
';
}
echo '
';
echo '';
}
}
if ($geom_type == 'GEOMETRYCOLLECTION') {
echo '
';
echo '';
}
echo '
';
echo '';
echo '
';
echo '
';
echo '
';
echo '
' . __('Output') . '
';
echo '
';
echo __(
'Choose "GeomFromText" from the "Function" column and paste the'
. ' string below into the "Value" field'
);
echo '
';
echo '
';
echo '
';
echo '
';
echo '