public function Notifications_Scheduler_Latest_Posts::user_access in Notifications 7
Check user access to event's objects.
Overrides Notifications_Scheduler_Event::user_access
1 method overrides Notifications_Scheduler_Latest_Posts::user_access()
- Notifications_Scheduler_New_Posts::user_access in notifications_scheduler/
notifications_scheduler.inc - Check user access to event's objects.
File
- notifications_scheduler/
notifications_scheduler.inc, line 223 - Drupal Notifications Framework - Default class file
Class
- Notifications_Scheduler_Latest_Posts
- Test this schedule class, send latest created nodes
Code
public function user_access($account, $op = 'view') {
return user_access('access content', $account);
}