function notifications_custom_subscription_title in Notifications 6
Same name and namespace in other branches
- 6.4 notifications_custom/notifications_custom.module \notifications_custom_subscription_title()
Menu title callback
1 string reference to 'notifications_custom_subscription_title'
- notifications_custom_menu in notifications_custom/
notifications_custom.module - Implementation of hook_menu().
File
- notifications_custom/
notifications_custom.module, line 81 - Custom notifications module
Code
function notifications_custom_subscription_title($subscription) {
return check_plain($subscription->name);
}