You are here

function theme_subscriptions_mail_item_subject in Subscriptions 5

theme a subject for an email output

1 theme call to theme_subscriptions_mail_item_subject()
subscriptions_mailvars in ./subscriptions.module

File

./subscriptions.module, line 1592

Code

function theme_subscriptions_mail_item_subject($to_user, $from_addr, $strtype, $node, $cid, $page, $subject) {
  $subject = t(variable_get('subscriptions_email_subject', SUBSCRIPTIONS_DEFAULT_SUBJECT), array(
    '@site' => variable_get('site_name', 'drupal'),
    '@type' => t($strtype),
    '@name' => $to_user->name,
    '@subject' => $subject,
  ));
  return $subject;
}