mirror of
https://github.com/netzmacht/contao-leaflet-maps.git
synced 2025-11-28 19:13:55 +01:00
45 lines
1.2 KiB
PHP
45 lines
1.2 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Leaflet maps for Contao CMS.
|
|
*
|
|
* @package contao-leaflet-maps
|
|
* @author David Molineus <david.molineus@netzmacht.de>
|
|
* @copyright 2014-2017 netzmacht David Molineus. All rights reserved.
|
|
* @license LGPL-3.0 https://github.com/netzmacht/contao-leaflet-maps/blob/master/LICENSE
|
|
* @filesource
|
|
*/
|
|
|
|
$GLOBALS['TL_DCA']['tl_leaflet_control_layer'] = [
|
|
'config' => [
|
|
'dataContainer' => 'Table',
|
|
'sql' => [
|
|
'keys' => [
|
|
'id' => 'primary',
|
|
'cid,lid' => 'unique',
|
|
],
|
|
],
|
|
],
|
|
|
|
'fields' => [
|
|
'id' => [
|
|
'sql' => 'int(10) unsigned NOT NULL auto_increment',
|
|
],
|
|
'tstamp' => [
|
|
'sql' => "int(10) unsigned NOT NULL default '0'",
|
|
],
|
|
'sorting' => [
|
|
'sql' => "int(10) unsigned NOT NULL default '0'",
|
|
],
|
|
'cid' => [
|
|
'sql' => "int(10) unsigned NOT NULL default '0'",
|
|
],
|
|
'lid' => [
|
|
'sql' => "int(10) unsigned NOT NULL default '0'",
|
|
],
|
|
'mode' => [
|
|
'sql' => "varchar(16) NOT NULL default ''",
|
|
],
|
|
],
|
|
];
|