Hook overrideLayoutTemplate

Informations

Hook overrideLayoutTemplate
Locations
FO
Type action
Origin core
Aliases
Description

Located in

Origin File
core classes/controller/FrontController.php

Call of the Hook in the origin file

if ($overridden_layout = Hook::exec(
    'overrideLayoutTemplate',
    [
        'default_layout' => $layout,
        'entity' => $entity,
        'locale' => $this->context->language->locale,
        'controller' => $this,
        'content_only' => $content_only,
    ]
)) {
    return $overridden_layout;
}