14 lines
419 B
PHP
14 lines
419 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;
|
|
|
|
$GLOBALS['TL_DCA']['tl_module']['palettes']['pinnwand'] = '{title_legend},name,headline,type;{image_legend},imgSize;{protected_legend:hide},protected;{expert_legend:hide},guests,cssID';
|