You are here

function _auto_expire_notify_expired in Auto Expire 5

Same name and namespace in other branches
  1. 7 auto_expire.module \_auto_expire_notify_expired()
1 call to _auto_expire_notify_expired()
auto_expire_cron in ./auto_expire.module

File

./auto_expire.module, line 419

Code

function _auto_expire_notify_expired($nid, $title, $type, $subject, $body) {
  $args = array(
    '!type' => $type,
    '!title' => $title,
    '!site' => variable_get('site_name', ''),
    '!siteurl' => url('<front>', NULL, NULL, TRUE),
  );
  _auto_expire_notify($nid, 'auto_expire_expired', $subject, $body, $args);
}