Skip to content
Snippets Groups Projects
Select Git revision
  • 4.0.x
  • 11.x default
  • 2340341-move-templatepreprocess-templatepreprocessdefaultvariables
  • 11.1.x
  • 10.4.x
  • 10.5.x
  • 10.3.x
  • 11.0.x
  • 7.x
  • 10.2.x
  • 10.1.x
  • 9.5.x
  • 10.0.x
  • 9.4.x
  • 9.3.x
  • 9.2.x
  • 9.1.x
  • 8.9.x
  • 9.0.x
  • 8.8.x
  • 8.7.x
  • previous/2340341-move-templatepreprocess-templatepreprocessdefaultvariables/2025-01-17
  • 10.3.11
  • 10.4.1
  • 11.0.10
  • 11.1.1
  • 10.4.0
  • 11.1.0
  • 7.103
  • 10.4.0-rc1
  • 11.1.0-rc1
  • 10.2.12
  • 10.3.10
  • 11.0.9
  • 10.2.11
  • 10.3.9
  • 11.0.8
  • 7.102
  • 10.4.0-beta1
  • 11.1.0-beta1
  • 10.3.8
41 results

cron.php

Blame
  • Forked from project / drupal
    44799 commits behind, 6 commits ahead of the upstream repository.
    user avatar
    The Great Git Migration authored and Drupal Git User (LDAP) committed
    779fb609
    History
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    cron.php 325 B
    <?php
    
    include_once "includes/common.inc";
    
    /*
    ** If not in 'safe mode', increase the maximum execution time:
    */
    
    if (!get_cfg_var("safe_mode")) {
      set_time_limit(180);
    }
    
    /*
    ** Iterate through the modules calling their cron handlers (if any):
    */
    
    foreach (module_list() as $module) {
      module_invoke($module, "cron");
    }
    
    ?>