function notifications_content_author_name_callback in Notifications 6.3
Same name and namespace in other branches
- 6.2 notifications_content/notifications_content.module \notifications_content_author_name_callback()
Wrapper for author autocomplete callback.
Parameters
$uid: uid of the author for which to return the name.
$subs_type: Optional type of subscription for which to find allowed content types. Defaults to nodetype, can be any subscription type with event-type=node for which notifications_content handles content type settings.
1 string reference to 'notifications_content_author_name_callback'
- notifications_content_notifications in notifications_content/
notifications_content.module - Implementation of hook_notifications()
File
- notifications_content/
notifications_content.module, line 409 - Subscriptions to content events
Code
function notifications_content_author_name_callback($uid, $subs_type = '') {
return notifications_content_author_name($uid);
}