function owner_notifications_title in Advertisement 6
Menu item title callback - use the user name
1 string reference to 'owner_notifications_title'
- ad_notify_menu in notify/
ad_notify.module - Implementation of hook_menu().
File
- notify/
ad_notify.module, line 67 - Receive email notifications regarding ads.
Code
function owner_notifications_title($account) {
return t('!owner\'s notifications', array(
'!owner' => $account->name,
));
}