Contributions API

Calling all Drupal developers!

Help us get this on the first page of Digg. DIGG NOW!

Modules in 6

coder_cron

Definition

coder_cron()
contributions/coder/coder.module, line 74

Description

Implementation of hook_cron().

Code

<?php
function coder_cron() {
  if ($use_cache = variable_get('coder_cache', 1)) {
    // TODO: move some of the work here... is this really worth it?
  }
}
?>