21 lines
717 B
PHP
21 lines
717 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/*
|
|
* This file is part of ContaoArchitectureProjectsBundle.
|
|
*
|
|
* (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-architecture-projects-bundle
|
|
*/
|
|
|
|
use Yupdesign\ContaoArchitectureProjectsBundle\Controller\FrontendModule\ArchListController;
|
|
|
|
/**
|
|
* Frontend modules
|
|
*/
|
|
$GLOBALS['TL_DCA']['tl_module']['palettes'][ArchListController::TYPE] = '{title_legend},name,headline,type;{template_legend:hide},customTpl;{protected_legend:hide},protected;{expert_legend:hide},guests,cssID';
|