1 layout.layout.inc | layout_layout_style_info() |
Implements hook_layout_style_info().
File
- core/
modules/ layout/ includes/ layout.layout.inc, line 218 - Contains hook implementations Layout module provides for itself.
Code
function layout_layout_style_info() {
$info['default'] = array(
'title' => t('Default'),
'description' => t('The default block rendering style with predictable tags provided by the site template.'),
'block theme' => 'block',
'class' => 'LayoutStyle',
'template' => 'templates/block',
'file' => 'layout.theme.inc',
);
$info['dynamic'] = array(
'title' => t('Dynamic'),
'description' => t('Customizable rendering style in which every HTML tag can be configured.'),
'block theme' => 'block_dynamic',
'class' => 'LayoutStyleDynamic',
'template' => 'templates/block-dynamic',
'file' => 'layout.theme.inc',
);
return $info;
}