<?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\ContentElement\ModalElementController;

$GLOBALS['TL_DCA']['tl_content']['palettes'][ModalElementController::TYPE] = '{type_legend},type;{modalconfig_legend},modal_configurations';


$GLOBALS['TL_DCA']['tl_content']['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'
);