Chris@0: ' . t('About') . ''; Chris@0: $output .= '

' . t('The Ban module allows administrators to ban visits to their site from individual IP addresses. For more information, see the online documentation for the Ban module.', [':url' => 'https://www.drupal.org/documentation/modules/ban']) . '

'; Chris@0: $output .= '

' . t('Uses') . '

'; Chris@0: $output .= '
'; Chris@0: $output .= '
' . t('Banning IP addresses') . '
'; Chris@18: $output .= '
' . t('Administrators can enter IP addresses to ban on the IP address bans page.', [':bans' => Url::fromRoute('ban.admin_page')->toString()]) . '
'; Chris@0: $output .= '
'; Chris@0: return $output; Chris@0: Chris@0: case 'ban.admin_page': Chris@0: return '

' . t('IP addresses listed here are banned from your site. Banned addresses are completely forbidden from accessing the site and instead see a brief message explaining the situation.') . '

'; Chris@0: } Chris@0: }