You are here

function _auto_expire_notify_warning in Auto Expire 5

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

File

./auto_expire.module, line 406

Code

function _auto_expire_notify_warning($nid, $title, $type, $days, $subject, $body) {
  $args = array(
    '!type' => $type,
    '!title' => $title,
    '!url' => url('node/' . $nid, NULL, NULL, TRUE),
    '!days' => $days,
    '!site' => variable_get('site_name', ''),
    '!siteurl' => url('<front>', NULL, NULL, TRUE),
  );
  _auto_expire_notify($nid, 'auto_expire_warning', $subject, $body, $args);
}