forked from Snck3rs/contao-leaflet-maps
Use translateable coordinate validator.
This commit is contained in:
@@ -271,7 +271,7 @@ $GLOBALS['TL_DCA']['tl_leaflet_icon'] = array
|
|||||||
'exclude' => true,
|
'exclude' => true,
|
||||||
'inputType' => 'text',
|
'inputType' => 'text',
|
||||||
'save_callback' => array(
|
'save_callback' => array(
|
||||||
array('Netzmacht\Contao\Leaflet\Dca\LeafletCallbacks', 'validateCoordinate')
|
\Netzmacht\Contao\Leaflet\Dca\Validator::callback('validateCoordinates')
|
||||||
),
|
),
|
||||||
'eval' => array(
|
'eval' => array(
|
||||||
'maxlength' => 255,
|
'maxlength' => 255,
|
||||||
@@ -286,7 +286,7 @@ $GLOBALS['TL_DCA']['tl_leaflet_icon'] = array
|
|||||||
'exclude' => true,
|
'exclude' => true,
|
||||||
'inputType' => 'text',
|
'inputType' => 'text',
|
||||||
'save_callback' => array(
|
'save_callback' => array(
|
||||||
array('Netzmacht\Contao\Leaflet\Dca\LeafletCallbacks', 'validateCoordinate')
|
\Netzmacht\Contao\Leaflet\Dca\Validator::callback('validateCoordinates')
|
||||||
),
|
),
|
||||||
'eval' => array(
|
'eval' => array(
|
||||||
'maxlength' => 255,
|
'maxlength' => 255,
|
||||||
@@ -301,7 +301,7 @@ $GLOBALS['TL_DCA']['tl_leaflet_icon'] = array
|
|||||||
'exclude' => true,
|
'exclude' => true,
|
||||||
'inputType' => 'text',
|
'inputType' => 'text',
|
||||||
'save_callback' => array(
|
'save_callback' => array(
|
||||||
array('Netzmacht\Contao\Leaflet\Dca\LeafletCallbacks', 'validateCoordinate')
|
\Netzmacht\Contao\Leaflet\Dca\Validator::callback('validateCoordinates')
|
||||||
),
|
),
|
||||||
'eval' => array(
|
'eval' => array(
|
||||||
'maxlength' => 255,
|
'maxlength' => 255,
|
||||||
|
|||||||
@@ -180,7 +180,7 @@ $GLOBALS['TL_DCA']['tl_leaflet_map'] = array
|
|||||||
'exclude' => true,
|
'exclude' => true,
|
||||||
'inputType' => 'text',
|
'inputType' => 'text',
|
||||||
'save_callback' => array(
|
'save_callback' => array(
|
||||||
array('Netzmacht\Contao\Leaflet\Dca\LeafletCallbacks', 'validateCoordinate')
|
\Netzmacht\Contao\Leaflet\Dca\Validator::callback('validateCoordinates'),
|
||||||
),
|
),
|
||||||
'wizard' => array(
|
'wizard' => array(
|
||||||
array('Netzmacht\Contao\Leaflet\Dca\LeafletCallbacks', 'getGeocoder')
|
array('Netzmacht\Contao\Leaflet\Dca\LeafletCallbacks', 'getGeocoder')
|
||||||
|
|||||||
@@ -189,7 +189,7 @@ $GLOBALS['TL_DCA']['tl_leaflet_marker'] = array
|
|||||||
'exclude' => true,
|
'exclude' => true,
|
||||||
'inputType' => 'text',
|
'inputType' => 'text',
|
||||||
'save_callback' => array(
|
'save_callback' => array(
|
||||||
array('Netzmacht\Contao\Leaflet\Dca\LeafletCallbacks', 'validateCoordinate'),
|
\Netzmacht\Contao\Leaflet\Dca\Validator::callback('validateCoordinates'),
|
||||||
array('Netzmacht\Contao\Leaflet\Dca\MarkerCallbacks', 'saveCoordinates')
|
array('Netzmacht\Contao\Leaflet\Dca\MarkerCallbacks', 'saveCoordinates')
|
||||||
),
|
),
|
||||||
'load_callback' => array(
|
'load_callback' => array(
|
||||||
|
|||||||
@@ -231,7 +231,7 @@ $GLOBALS['TL_DCA']['tl_leaflet_popup'] = array
|
|||||||
'exclude' => true,
|
'exclude' => true,
|
||||||
'inputType' => 'text',
|
'inputType' => 'text',
|
||||||
'save_callback' => array(
|
'save_callback' => array(
|
||||||
array('Netzmacht\Contao\Leaflet\Dca\LeafletCallbacks', 'validateCoordinate')
|
\Netzmacht\Contao\Leaflet\Dca\Validator::callback('validateCoordinates')
|
||||||
),
|
),
|
||||||
'eval' => array(
|
'eval' => array(
|
||||||
'maxlength' => 255,
|
'maxlength' => 255,
|
||||||
|
|||||||
@@ -311,7 +311,7 @@ $GLOBALS['TL_DCA']['tl_leaflet_vector'] = array
|
|||||||
'exclude' => true,
|
'exclude' => true,
|
||||||
'inputType' => 'text',
|
'inputType' => 'text',
|
||||||
'save_callback' => array(
|
'save_callback' => array(
|
||||||
array('Netzmacht\Contao\Leaflet\Dca\LeafletCallbacks', 'validateCoordinate')
|
\Netzmacht\Contao\Leaflet\Dca\Validator::callback('validateCoordinates')
|
||||||
),
|
),
|
||||||
'wizard' => array(
|
'wizard' => array(
|
||||||
array('Netzmacht\Contao\Leaflet\Dca\LeafletCallbacks', 'getGeocoder')
|
array('Netzmacht\Contao\Leaflet\Dca\LeafletCallbacks', 'getGeocoder')
|
||||||
@@ -320,6 +320,7 @@ $GLOBALS['TL_DCA']['tl_leaflet_vector'] = array
|
|||||||
'maxlength' => 255,
|
'maxlength' => 255,
|
||||||
'tl_class' => 'long clr',
|
'tl_class' => 'long clr',
|
||||||
'nullIfEmpty' => true,
|
'nullIfEmpty' => true,
|
||||||
|
'mandatory' => true,
|
||||||
),
|
),
|
||||||
'sql' => "varchar(255) NULL"
|
'sql' => "varchar(255) NULL"
|
||||||
),
|
),
|
||||||
|
|||||||
@@ -47,3 +47,4 @@ $GLOBALS['TL_LANG']['leaflet']['searchPosition'] = 'Search location';
|
|||||||
$GLOBALS['TL_LANG']['leaflet']['applyPosition'] = 'Apply position';
|
$GLOBALS['TL_LANG']['leaflet']['applyPosition'] = 'Apply position';
|
||||||
|
|
||||||
$GLOBALS['TL_LANG']['leaflet']['invalidAlias'] = 'Invalid alias given. Alias may not be empty, begin with a numeric value nor contain any special chars (underscore allowed).';
|
$GLOBALS['TL_LANG']['leaflet']['invalidAlias'] = 'Invalid alias given. Alias may not be empty, begin with a numeric value nor contain any special chars (underscore allowed).';
|
||||||
|
$GLOBALS['TL_LANG']['leaflet']['invalidCoordinates'] = 'Invalid coordinate values given.';
|
||||||
|
|||||||
@@ -24,24 +24,6 @@ use Netzmacht\LeafletPHP\Value\LatLng;
|
|||||||
*/
|
*/
|
||||||
class LeafletCallbacks
|
class LeafletCallbacks
|
||||||
{
|
{
|
||||||
/**
|
|
||||||
* Validate a coordinate.
|
|
||||||
*
|
|
||||||
* @param mixed $value The given value.
|
|
||||||
*
|
|
||||||
* @return mixed
|
|
||||||
*/
|
|
||||||
public function validateCoordinate($value)
|
|
||||||
{
|
|
||||||
if (!empty($value)) {
|
|
||||||
// Validate by creating latlng object. Throws an exception.
|
|
||||||
|
|
||||||
LatLng::fromString($value);
|
|
||||||
}
|
|
||||||
|
|
||||||
return $value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create the zoom range.
|
* Create the zoom range.
|
||||||
*
|
*
|
||||||
|
|||||||
Reference in New Issue
Block a user