diff --git a/core/modules/system/system.admin.inc b/core/modules/system/system.admin.inc index 81fa6af..db7cbc3 100644 --- a/core/modules/system/system.admin.inc +++ b/core/modules/system/system.admin.inc @@ -225,17 +225,16 @@ function theme_system_modules_details($variables) { $required_by = !empty($module['#required_by']); $version = !empty($module['version']['#markup']); - $row[] = array('class' => array('checkbox'), 'data' => drupal_render($module['enable'])); + $row[] = ['class' => ['checkbox'], 'data' => drupal_render($module['enable'])]; - // Add the module label and expand/collapse functionality. - $id = Html::getUniqueId('module-' . $key); - $col2 = ''; - $row[] = array('class' => array('module'), 'data' => SafeMarkup::set($col2)); + $module_name = drupal_render($module['name']); + $col2 = SafeMarkup::format('',['@id' => $id, '@enableid' => $module['enable']['#id'], '@modulename' => $module_name]); + $row[] = ['class' => ['module'], 'data' => $col2]; // Add the description, along with any modules it requires. $description = ''; $description .= '
'; - $description .= '
' . t('Machine name: !machine-name', array('!machine-name' => '' . $key . '')) . '
'; + $description .= '
' . t('Machine name: !machine-name', ['!machine-name' => '' . $key . '']) . '
'; if ($version || $requires || $required_by) { if ($version) { $description .= '
' . t('Version: !module-version', array('!module-version' => drupal_render($module['version']))) . '
'; diff --git a/core/modules/update/update.module b/core/modules/update/update.module index 63ed8d0..6a66c5d 100644 --- a/core/modules/update/update.module +++ b/core/modules/update/update.module @@ -517,10 +517,10 @@ function _update_message_text($msg_type, $msg_reason, $report_link = FALSE, $lan case UPDATE_NOT_FETCHED: case UPDATE_FETCH_PENDING: if ($msg_type == 'core') { - $text = t('There was a problem checking available updates for Drupal.', array('@update-report' => \Drupal::url('update.status')), array('langcode' => $langcode)); + $text = t('There was a problem checking available updates for Drupal.', ['@update-report' => \Drupal::url('update.status')], ['langcode' => $langcode]); } else { - $text = t('There was a problem checking available updates for your modules or themes.', array('@update-report' => \Drupal::url('update.status')), array('langcode' => $langcode)); + $text = t('There was a problem checking available updates for your modules or themes.', ['@update-report' => \Drupal::url('update.status')], ['langcode' => $langcode]); } break; } @@ -532,10 +532,10 @@ function _update_message_text($msg_type, $msg_reason, $report_link = FALSE, $lan } if ($report_link) { if (update_manager_access()) { - $text .= ' ' . t('See the available updates page for more information and to install your missing updates.', array('@available_updates' => \Drupal::url('update.report_update', [], ['language' => $language])), array('langcode' => $langcode)); + $text .= ' ' . t('See the available updates page for more information and to install your missing updates.', ['@available_updates' => \Drupal::url('update.report_update', [], ['language' => $language])], ['langcode' => $langcode]); } else { - $text .= ' ' . t('See the available updates page for more information.', array('@available_updates' => \Drupal::url('update.status', [], ['language' => $language])), array('langcode' => $langcode)); + $text .= ' ' . t('See the available updates page for more information.', ['@available_updates' => \Drupal::url('update.status', [], ['language' => $language])], ['langcode' => $langcode]); } }