function template_preprocess_featured_content_more in Featured Content 7.2
Same name and namespace in other branches
- 6.2 featured_content.module \template_preprocess_featured_content_more()
- 6 featured_content.module \template_preprocess_featured_content_more()
- 7 featured_content.module \template_preprocess_featured_content_more()
Process variables for featured_content-more.tpl.php.
See also
template_preprocess_featured_content_block
File
- ./
featured_content.module, line 127 - Featured Content module for created related & featured content blocks.
Code
function template_preprocess_featured_content_more(&$variables) {
$variables['more_classes_array'][] = 'featured-content-more-' . $variables['block_settings']['delta'];
$variables['more_classes_array'][] = 'featured-content-more-' . $variables['block_settings']['type'];
$variables['more_classes'] = check_plain(implode(' ', $variables['more_classes_array']));
$variables['theme_hook_suggestions'][] = 'featured_content_more__' . $variables['block_settings']['type'];
$variables['theme_hook_suggestions'][] = 'featured_content_more__' . $variables['block_settings']['delta'];
}