/[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, Wed Feb 6 16:35:17 2008 UTC revision 1.2, Tue Sep 29 22:28:04 2009 UTC
# Line 1  Line 1 
1  <?php  <?php
2  // $Id$  // $Id: poormanscron.admin.inc,v 1.1.2.1 2008/04/27 09:40:29 robloach Exp $
3    
4  /**  /**
5   * @file   * @file
# Line 31  function poormanscron_admin_settings() { Line 31  function poormanscron_admin_settings() {
31      '#options' => array('1' => t('Yes'), '0' => t('No')),      '#options' => array('1' => t('Yes'), '0' => t('No')),
32      '#description' => t('If you want to log successful cron runs to the Drupal watchdog, say Yes here. If those messages annoy you, disable them by selecting No.')      '#description' => t('If you want to log successful cron runs to the Drupal watchdog, say Yes here. If those messages annoy you, disable them by selecting No.')
33    );    );
   $form['logging']['poormanscron_log_progress'] = array(  
     '#type' => 'select', '#title' => t('Log poormanscron progress'),  
     '#default_value' => variable_get('poormanscron_log_progress', 0),  
     '#options' => array('1' => t('Yes'), '0' => t('No')),  
     '#description' => t('If you want to log the progress of a poormanscron run to the Drupal watchdog, say Yes here. If those messages annoy you, disable them by selecting No.')  
   );  
34    return system_settings_form($form);    return system_settings_form($form);
35  }  }

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.2

  ViewVC Help
Powered by ViewVC 1.1.2