/[drupal]/contributions/modules/poormanscron/poormanscron.admin.inc
ViewVC logotype

Diff of /contributions/modules/poormanscron/poormanscron.admin.inc

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph | View Patch Patch

revision 1.1.2.1 by robloach, Sun Apr 27 09:40:29 2008 UTC revision 1.1.2.2 by davereid, Fri Nov 27 01:01:21 2009 UTC
# Line 1  Line 1 
1  <?php  <?php
2  // $Id: poormanscron.admin.inc,v 1.1 2008/02/06 16:35:17 robloach Exp $  // $Id: poormanscron.admin.inc,v 1.1.2.1 2008/04/27 09:40:29 robloach Exp $
3    
4  /**  /**
5   * @file   * @file
# Line 13  function poormanscron_admin_settings() { Line 13  function poormanscron_admin_settings() {
13    $form['time_intervals'] = array('#type' => 'fieldset', '#title' => t('Time intervals'));    $form['time_intervals'] = array('#type' => 'fieldset', '#title' => t('Time intervals'));
14    $form['time_intervals']['poormanscron_interval'] = array(    $form['time_intervals']['poormanscron_interval'] = array(
15      '#type' => 'textfield', '#title' => t('Cron runs interval'),      '#type' => 'textfield', '#title' => t('Cron runs interval'),
16      '#default_value' => variable_get('poormanscron_interval', 60),      '#default_value' => variable_get('poormanscron_interval', 180),
17      '#size' => 5, '#maxlength' => 10,      '#size' => 5, '#maxlength' => 10,
18      '#description' => t('Minimum number of minutes between cron runs. Cron will actually execute during the first page request after the interval has elapsed.')      '#description' => t('Minimum number of minutes between cron runs. Cron will actually execute during the first page request after the interval has elapsed.')
19    );    );

Legend:
Removed from v.1.1.2.1  
changed lines
  Added in v.1.1.2.2

  ViewVC Help
Powered by ViewVC 1.1.3