* @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\Model\ArchProjectsModel; /** * Backend modules */ $GLOBALS['BE_MOD']['architecture_projects']['arch_projects'] = array( 'tables' => array('tl_arch_projects') ); /** * Models */ $GLOBALS['TL_MODELS']['tl_arch_projects'] = ArchProjectsModel::class;