123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 |
- <?php
- function update_settings($form) {
- $form['update_check_frequency'] = array(
- '#type' => 'radios',
- '#title' => t('Check for updates'),
- '#default_value' => variable_get('update_check_frequency', 1),
- '#options' => array(
- '1' => t('Daily'),
- '7' => t('Weekly'),
- ),
- '#description' => t('Select how frequently you want to automatically check for new releases of your currently installed modules and themes.'),
- );
- $form['update_check_disabled'] = array(
- '#type' => 'checkbox',
- '#title' => t('Check for updates of disabled and uninstalled modules and themes'),
- '#default_value' => variable_get('update_check_disabled', FALSE),
- );
- $notify_emails = variable_get('update_notify_emails', array());
- $form['update_notify_emails'] = array(
- '#type' => 'textarea',
- '#title' => t('E-mail addresses to notify when updates are available'),
- '#rows' => 4,
- '#default_value' => implode("\n", $notify_emails),
- '#description' => t('Whenever your site checks for available updates and finds new releases, it can notify a list of users via e-mail. Put each address on a separate line. If blank, no e-mails will be sent.'),
- );
- $form['update_notification_threshold'] = array(
- '#type' => 'radios',
- '#title' => t('E-mail notification threshold'),
- '#default_value' => variable_get('update_notification_threshold', 'all'),
- '#options' => array(
- 'all' => t('All newer versions'),
- 'security' => t('Only security updates'),
- ),
- '#description' => t('You can choose to send e-mail only if a security update is available, or to be notified about all newer versions. If there are updates available of Drupal core or any of your installed modules and themes, your site will always print a message on the <a href="@status_report">status report</a> page, and will also display an error message on administration pages if there is a security update.', array('@status_report' => url('admin/reports/status')))
- );
- $form = system_settings_form($form);
-
- $form['#validate'][] = 'update_settings_validate';
-
-
- unset($form['#submit']);
- return $form;
- }
- function update_settings_validate($form, &$form_state) {
- if (!empty($form_state['values']['update_notify_emails'])) {
- $valid = array();
- $invalid = array();
- foreach (explode("\n", trim($form_state['values']['update_notify_emails'])) as $email) {
- $email = trim($email);
- if (!empty($email)) {
- if (valid_email_address($email)) {
- $valid[] = $email;
- }
- else {
- $invalid[] = $email;
- }
- }
- }
- if (empty($invalid)) {
- $form_state['notify_emails'] = $valid;
- }
- elseif (count($invalid) == 1) {
- form_set_error('update_notify_emails', t('%email is not a valid e-mail address.', array('%email' => reset($invalid))));
- }
- else {
- form_set_error('update_notify_emails', t('%emails are not valid e-mail addresses.', array('%emails' => implode(', ', $invalid))));
- }
- }
- }
- function update_settings_submit($form, $form_state) {
- $op = $form_state['values']['op'];
- if (empty($form_state['notify_emails'])) {
- variable_del('update_notify_emails');
- }
- else {
- variable_set('update_notify_emails', $form_state['notify_emails']);
- }
- unset($form_state['notify_emails']);
- unset($form_state['values']['update_notify_emails']);
-
-
- $check_disabled = variable_get('update_check_disabled', FALSE);
- if ($form_state['values']['update_check_disabled'] != $check_disabled) {
- _update_cache_clear();
- }
- system_settings_form_submit($form, $form_state);
- }
|