function fullcalendar_perm in FullCalendar 6.2
Same name and namespace in other branches
- 6 fullcalendar.module \fullcalendar_perm()
Implementation of hook_perm().
Return value
An array of valid permissions for the FullCalendar module.
File
- ./
fullcalendar.module, line 54 - Provides a views style plugin for FullCalendar
Code
function fullcalendar_perm() {
return array(
'update any fullcalendar event',
);
}