forked from Snck3rs/contao-leaflet-maps
80 lines
2.9 KiB
PHP
80 lines
2.9 KiB
PHP
<?php
|
|
|
|
/**
|
|
* @package contao-leaflet-maps
|
|
* @author David Molineus <david.molineus@netzmacht.de>
|
|
* @copyright 2014-2016 netzmacht David Molineus
|
|
* @license LGPL 3.0
|
|
* @filesource
|
|
*
|
|
*/
|
|
|
|
$GLOBALS['TL_DCA']['tl_content']['metapalettes']['leaflet'] = array(
|
|
'type' => array('type', 'headline'),
|
|
'leaflet' => array('leaflet_map', 'leaflet_mapId', 'leaflet_width', 'leaflet_height', 'leaflet_template'),
|
|
'templates' => array(':hide', 'customTpl'),
|
|
'protected' => array(':hide', 'protected'),
|
|
'expert' => array(':hide', 'guests', 'cssID', 'space'),
|
|
'invisible' => array(':hide', 'invisible', 'start', 'start')
|
|
);
|
|
|
|
$GLOBALS['TL_DCA']['tl_content']['fields']['leaflet_map'] = array(
|
|
'label' => &$GLOBALS['TL_LANG']['tl_content']['leaflet_map'],
|
|
'inputType' => 'select',
|
|
'exclude' => true,
|
|
'options_callback' => \Netzmacht\Contao\Leaflet\Dca\FrontendIntegration::callback('getMaps'),
|
|
'wizard' => array(
|
|
\Netzmacht\Contao\Leaflet\Dca\FrontendIntegration::callback('getEditMapLink'),
|
|
),
|
|
'eval' => array(
|
|
'tl_class' => 'w50 wizard',
|
|
'chosen' => true,
|
|
),
|
|
'sql' => "int(10) unsigned NOT NULL default '0'"
|
|
);
|
|
|
|
$GLOBALS['TL_DCA']['tl_content']['fields']['leaflet_mapId'] = array(
|
|
'label' => &$GLOBALS['TL_LANG']['tl_content']['leaflet_mapId'],
|
|
'inputType' => 'text',
|
|
'exclude' => true,
|
|
'eval' => array(
|
|
'tl_class' => 'w50',
|
|
'chosen' => true,
|
|
'maxlength' => 16,
|
|
),
|
|
'sql' => "varchar(16) NOT NULL default ''"
|
|
);
|
|
|
|
$GLOBALS['TL_DCA']['tl_content']['fields']['leaflet_width'] = array(
|
|
'label' => &$GLOBALS['TL_LANG']['tl_content']['leaflet_width'],
|
|
'inputType' => 'inputUnit',
|
|
'options' => array('px', '%', 'em', 'pt', 'pc', 'in', 'cm', 'mm'),
|
|
'search' => false,
|
|
'exclude' => true,
|
|
'eval' => array('rgxp' => 'digit', 'tl_class' => 'clr w50'),
|
|
'sql' => "varchar(64) NOT NULL default ''"
|
|
);
|
|
|
|
|
|
$GLOBALS['TL_DCA']['tl_content']['fields']['leaflet_height'] = array(
|
|
'label' => &$GLOBALS['TL_LANG']['tl_content']['leaflet_height'],
|
|
'inputType' => 'inputUnit',
|
|
'options' => array('px', '%', 'em', 'pt', 'pc', 'in', 'cm', 'mm'),
|
|
'search' => false,
|
|
'exclude' => true,
|
|
'eval' => array('rgxp' => 'digit', 'tl_class' => 'w50'),
|
|
'sql' => "varchar(64) NOT NULL default ''"
|
|
);
|
|
|
|
$GLOBALS['TL_DCA']['tl_content']['fields']['leaflet_template'] = array(
|
|
'label' => &$GLOBALS['TL_LANG']['tl_content']['leaflet_template'],
|
|
'inputType' => 'select',
|
|
'exclude' => true,
|
|
'options_callback' => \Netzmacht\Contao\Toolkit\Dca\Callback\CallbackFactory::getTemplates('leaflet_map_js'),
|
|
'eval' => array(
|
|
'tl_class' => 'w50',
|
|
'chosen' => true,
|
|
),
|
|
'sql' => "varchar(64) NOT NULL default ''"
|
|
);
|