function fullcalendar_legend_preprocess_block in FullCalendar 8.5
Same name and namespace in other branches
- 8 fullcalendar_legend/fullcalendar_legend.module \fullcalendar_legend_preprocess_block()
- 8.2 modules/fullcalendar_legend/fullcalendar_legend.module \fullcalendar_legend_preprocess_block()
- 8.3 fullcalendar_legend/fullcalendar_legend.module \fullcalendar_legend_preprocess_block()
- 8.4 modules/fullcalendar_legend/fullcalendar_legend.module \fullcalendar_legend_preprocess_block()
- 7.2 fullcalendar_legend/fullcalendar_legend.module \fullcalendar_legend_preprocess_block()
Implements hook_preprocess_block().
File
- modules/
fullcalendar_legend/ fullcalendar_legend.module, line 25 - Adds a legend of event types.
Code
function fullcalendar_legend_preprocess_block(&$variables) {
if ($variables['configuration']['provider'] == 'fullcalendar_legend') {
$variables['attributes']['class'][] = 'fullcalendar-legend';
}
}