12 lines
232 B
PHP
12 lines
232 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use Eiswurm\ContaoPinboardBundle\Model\PinboardModel;
|
|
|
|
$GLOBALS['BE_MOD']['content']['pinnwand'] = [
|
|
'tables' => ['tl_pinnwand'],
|
|
];
|
|
|
|
$GLOBALS['TL_MODELS']['tl_pinnwand'] = PinboardModel::class;
|