function hook_fullcalendar_classes in FullCalendar 8.5
Same name and namespace in other branches
- 8 fullcalendar.api.php \hook_fullcalendar_classes()
- 8.2 fullcalendar.api.php \hook_fullcalendar_classes()
- 8.3 fullcalendar.api.php \hook_fullcalendar_classes()
- 8.4 fullcalendar.api.php \hook_fullcalendar_classes()
- 6.2 fullcalendar.api.php \hook_fullcalendar_classes()
- 7.2 fullcalendar.api.php \hook_fullcalendar_classes()
Constructs CSS classes for an entity.
Parameters
object $entity: Object representing the entity.
Return value
array Array of CSS classes.
1 function implements hook_fullcalendar_classes()
Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.
- fullcalendar_fullcalendar_classes in ./
fullcalendar.module - Implements hook_fullcalendar_classes().
2 invocations of hook_fullcalendar_classes()
- FullCalendar::prepareEvent in src/
Plugin/ views/ style/ FullCalendar.php - Helper method to prepare an event.
- _fullcalendar_legend_get_classes in modules/
fullcalendar_legend/ fullcalendar_legend.theme.inc - Spoofs an entity to get its classes.
File
- ./
fullcalendar.api.php, line 22 - Hooks provided by the FullCalendar module.
Code
function hook_fullcalendar_classes($entity) {
// Add the entity type as a class.
return [
$entity->entity_type,
];
}