<?php
declare(strict_types=1);
/*
* This file is part of modal bundle for Contao.
*
* (c) Benjamin Roth
*
* @license LGPL-3.0-or-later
*/
use vonRotenberg\ModalBundle\Controller\FrontendModule\ModalModuleController;
$GLOBALS['TL_DCA']['tl_module']['palettes'][ModalModuleController::TYPE] = '{title_legend},name,type;{modalconfig_legend},modal_configurations';
$GLOBALS['TL_DCA']['tl_module']['fields']['modal_configurations'] = array
(
'exclude' => true,
'inputType' => 'select',
'foreignKey' => 'tl_vr_modal.title',
'eval' => array('mandatory' => true, 'tl_class' => 'w50', 'includeBlankOption' => true, 'chosen' => true),
'sql' => 'int(10) unsigned NOT NULL default 0'
);