1 layout.module layout_layout_info()

Implements deprecated hook_layout_info().

This hook has been replaced by hook_layout_template_info.

Deprecated

since 1.30.0

See also

layout_layout_template_info()

https://docs.backdropcms.org/change-records/hook_layout_info-renamed-to-...

File

core/modules/layout/layout.module, line 2499
The Layout module creates pages and wraps existing pages in layouts.

Code

function layout_layout_info() {
  watchdog_deprecated_function('layout', __FUNCTION__);
  return layout_layout_template_info();
}