You are here

function zoomapi_cron in Zoom API 7

Same name and namespace in other branches
  1. 7.2 zoomapi.module \zoomapi_cron()

Implements hook_cron().

File

./zoomapi.module, line 89
Main file for the Zoom API module.

Code

function zoomapi_cron() {
  db_delete('zoomapi_meeting_tracker')
    ->condition('expires', time(), '<=')
    ->execute();
}