function ip_cron in IP address manager 8.2
Same name and namespace in other branches
- 6 ip.module \ip_cron()
- 7 ip.module \ip_cron()
Implements hook_cron().
File
- ./
ip.module, line 90 - IP address manager module.
Code
function ip_cron() {
/* @TODO port to D8: maybe a better approach is to move this to a drush/batch command.
// Process backlog of nodes.
ip_backlog_nodes();
// If nodes are done, process comments.
if (!variable_get('ip_backlog_nodes', PHP_INT_MAX)) {
ip_backlog_comments();
}*/
}