<?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\Model\ModalModel;

$GLOBALS['BE_MOD']['content']['modals'] = array
(
    'tables'      => array('tl_vr_modal', 'tl_content'),
);


$GLOBALS['TL_MODELS']['tl_vr_modal'] = ModalModel::class;

// Add permissions
$GLOBALS['TL_PERMISSIONS'][] = 'modals';
$GLOBALS['TL_PERMISSIONS'][] = 'modalp';