You are here

function simplenews_roles_cron in Simplenews Roles 5

Same name and namespace in other branches
  1. 6.2 simplenews_roles.module \simplenews_roles_cron()
  2. 6 simplenews_roles.module \simplenews_roles_cron()
  3. 7 simplenews_roles.module \simplenews_roles_cron()

Implementation of hook_cron().

File

./simplenews_roles.module, line 6

Code

function simplenews_roles_cron() {
  foreach (variable_get('simplenews_roles_tids_rids', array()) as $tid => $rids) {
    simplenews_roles_update_subscriptions($tid, $rids);
  }
}