ec_mail_delete_confirm($mid = '')
ecommerce-5--3/ec_mail/ec_mail.module, line 324
<?php
function ec_mail_delete_confirm($mid = '') {
if (empty($mid)) {
return drupal_not_found();
}
if (ec_mail_get_numrefs($mid)) {
// can't delete the mail
drupal_set_message(t('This mail is currently in use and can not be deleted.'), 'error');
return '';
}
return drupal_get_form('ec_mail_delete_confirm_form', $mid);
}
?>