Mercurial > hg > isophonics-drupal-site
comparison core/modules/update/src/UpdateSettingsForm.php @ 17:129ea1e6d783
Update, including to Drupal core 8.6.10
author | Chris Cannam |
---|---|
date | Thu, 28 Feb 2019 13:21:36 +0000 |
parents | 1fec387a4317 |
children | af1871eacc83 |
comparison
equal
deleted
inserted
replaced
16:c2387f117808 | 17:129ea1e6d783 |
---|---|
93 '#default_value' => $config->get('notification.threshold'), | 93 '#default_value' => $config->get('notification.threshold'), |
94 '#options' => [ | 94 '#options' => [ |
95 'all' => t('All newer versions'), | 95 'all' => t('All newer versions'), |
96 'security' => t('Only security updates'), | 96 'security' => t('Only security updates'), |
97 ], | 97 ], |
98 '#description' => t('You can choose to send email 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.', [':status_report' => $this->url('system.status')]) | 98 '#description' => t('You can choose to send email 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.', [':status_report' => $this->url('system.status')]), |
99 ]; | 99 ]; |
100 | 100 |
101 return parent::buildForm($form, $form_state); | 101 return parent::buildForm($form, $form_state); |
102 } | 102 } |
103 | 103 |