15 lines
441 B
PHP
15 lines
441 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
$GLOBALS['TL_MODELS']['tl_organization'] = Mummert\EventManagerBundle\Model\OrganizationModel::class;
|
|
$GLOBALS['TL_MODELS']['tl_location'] = Mummert\EventManagerBundle\Model\LocationModel::class;
|
|
|
|
$GLOBALS['BE_MOD']['content']['eventmanager_organisationen'] = [
|
|
'tables' => ['tl_organization'],
|
|
];
|
|
|
|
$GLOBALS['BE_MOD']['content']['eventmanager_veranstaltungsorte'] = [
|
|
'tables' => ['tl_location'],
|
|
];
|