function claro_form_system_modules_alter
Same name in other branches
- 10 core/themes/claro/claro.theme \claro_form_system_modules_alter()
- 11.x core/themes/claro/claro.theme \claro_form_system_modules_alter()
Implements hook_form_FORM_ID_alter() for the system_modules form.
File
-
core/
themes/ claro/ claro.theme, line 748
Code
function claro_form_system_modules_alter(&$form, FormStateInterface $form_state) {
if (isset($form['filters'])) {
$form['filters']['#attributes']['class'][] = 'modules-table-filter';
if (isset($form['filters']['text'])) {
unset($form['filters']['text']['#title_display']);
$form['filters']['text']['#title'] = t('Filter');
}
}
// Convert module links to action links.
foreach (Element::children($form['modules']) as $key) {
$link_key_to_action_link_type = [
'help' => 'questionmark',
'permissions' => 'key',
'configure' => 'cog',
];
if (isset($form['modules'][$key]['#type']) && $form['modules'][$key]['#type'] === 'details') {
$form['modules'][$key]['#module_package_listing'] = TRUE;
foreach (Element::children($form['modules'][$key]) as $module_key) {
if (isset($form['modules'][$key][$module_key]['links'])) {
foreach ($form['modules'][$key][$module_key]['links'] as $link_key => &$link) {
if (array_key_exists($link_key, $link_key_to_action_link_type)) {
$action_link_type = $link_key_to_action_link_type[$link_key];
$link['#options']['attributes']['class'][] = 'action-link';
$link['#options']['attributes']['class'][] = 'action-link--small';
$link['#options']['attributes']['class'][] = "action-link--icon-{$action_link_type}";
}
}
}
}
}
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.