function popup_announcement_cron in Pop-up announcement 7
Implements hook_cron().
File
- ./
popup_announcement.module, line 189 - Primarily Drupal hooks and custom functions for creating block with pop-up announcement.
Code
function popup_announcement_cron() {
// no longer than standard ini_set('session.cookie_lifetime', 2000000) in settings.php.
// ~ 23 days
db_delete('popup_announcement')
->condition('timestamp_first_visit', REQUEST_TIME - 60 * 60 * 24 * 23, '<')
->execute();
}