| 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 |
| 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 |
} |
} |