1.20.x layout.theme.inc | theme_layout_template_option($variables) |
Outputs an individual option label for selecting a layout.
File
- modules/
layout/ layout.theme.inc, line 102 - Theme functions for the Layout module.
Code
function theme_layout_template_option($variables) {
$template_info = $variables['template_info'];
$icon_path = $template_info['path'] . '/' . $template_info['preview'];
$output = '';
$output .= '<div class="layout-icon">';
$output .= theme('image', array(
'uri' => $icon_path,
'attributes' => array('title' => $template_info['title']),
));
$output .= '<div class="layout-caption">' . check_plain($template_info['title']) . '</div>';
$output .= '</div>';
return $output;
}