26 lines
593 B
PHP
26 lines
593 B
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of KIDCateringBundle.
|
|
*
|
|
* (c) Stephan GIeb 2025 <stephan.gieb@yupdesign.de>
|
|
* @license GPL-3.0-or-later
|
|
* For the full copyright and license information,
|
|
* please view the LICENSE file that was distributed with this source code.
|
|
* @link https://github.com/yupdesign/contao-kid-catering-bundle
|
|
*/
|
|
|
|
use Yupdesign\ContaoKidCateringBundle\Model\KidMealsModel;
|
|
|
|
/**
|
|
* Backend modules
|
|
*/
|
|
$GLOBALS['BE_MOD']['catering']['meals'] = array(
|
|
'tables' => array('tl_kid_meals')
|
|
);
|
|
|
|
/**
|
|
* Models
|
|
*/
|
|
$GLOBALS['TL_MODELS']['tl_kid_meals'] = KidMealsModel::class;
|