| 1 |
<?php |
<?php |
| 2 |
/* $Id: notify_by_views.module,v 1.8 2009/04/28 17:21:39 matt2000 Exp $ */ |
/* $Id: notify_by_views.module,v 1.9 2009/04/28 18:27:00 matt2000 Exp $ */ |
| 3 |
/** |
/** |
| 4 |
* Display help and module information |
* Display help and module information |
| 5 |
* @param section which section of the site we're displaying help |
* @param section which section of the site we're displaying help |
| 227 |
case 'insert': |
case 'insert': |
| 228 |
$total = 0; |
$total = 0; |
| 229 |
foreach (variable_get('notify_by_views_select_views', array()) AS $key => $view_name) { |
foreach (variable_get('notify_by_views_select_views', array()) AS $key => $view_name) { |
| 230 |
if (!$key && !$view_name) continue; //bail if this is an unselected view |
if (!$key || !$view_name) continue; //bail if this is an unselected view |
| 231 |
$result = _notify_by_views_mail_send($node, 'immediate', $view_name); |
$result = _notify_by_views_mail_send($node, 'immediate', $view_name); |
| 232 |
$total = $total + $result[0]; |
$total = $total + $result[0]; |
| 233 |
} |
} |