1 layout.layout.inc | layout_layout_renderer_info() |
Implements hook_layout_renderer_info().
File
- core/
modules/ layout/ includes/ layout.layout.inc, line 199 - Contains hook implementations Layout module provides for itself.
Code
function layout_layout_renderer_info() {
$info['broken'] = array(
'class' => 'LayoutRendererBroken',
);
$info['editor'] = array(
'class' => 'LayoutRendererEditor',
);
$info['standard'] = array(
'class' => 'LayoutRendererStandard',
);
$info['flexible'] = array(
'class' => 'LayoutRendererFlexible',
);
return $info;
}