querformat/layout-sections-extender

允许模块通过新的钩子,在后台提供自己的布局区域

1.0.0 2018-10-12 20:21 UTC

This package is not auto-updated.

Last update: 2024-09-28 00:22:37 UTC


README

Contao 扩展

Latest Stable Version Total Downloads License

使用 layout-sections-extender 模块,Contao 中提供了新的钩子。

"addLayoutSections" 钩子允许其他模块提供新的布局区域,而无需通过 Contao 的布局设置来定义。

// config.php
$GLOBALS['TL_HOOKS']['addLayoutSections'][] = array(
  'myLayoutSectionKey' => 'MyLayoutSectionName',
  ...
);