Issue #2657096 by xjm: Provide a link to the experimental module policy in the status report warning

8.1.x
Nathaniel Catchpole 2016-02-01 19:15:44 +09:00
parent 260b6e3780
commit eed2f22e86
1 changed files with 1 additions and 1 deletions

View File

@ -61,7 +61,7 @@ function system_requirements($phase) {
if (!empty($experimental)) {
$requirements['experimental'] = array(
'title' => t('Experimental modules enabled'),
'value' => t('Experimental modules found: %module_list. Experimental modules are provided for testing purposes only. Use at your own risk.', array('%module_list' => implode(', ', $experimental))),
'value' => t('Experimental modules found: %module_list. <a href=":url">Experimental modules</a> are provided for testing purposes only. Use at your own risk.', array('%module_list' => implode(', ', $experimental), ':url' => 'https://www.drupal.org/core/experimental')),
'severity' => REQUIREMENT_WARNING,
);
}