You are here

function nbsp_install in CKEditor Non-breaking space Plugin ( ) 8.2

Same name and namespace in other branches
  1. 8 nbsp.install \nbsp_install()

Implements hook_install().

File

./nbsp.install, line 14
Contains nbsp.install.

Code

function nbsp_install() {
  $url = Url::fromRoute('filter.admin_overview');
  \Drupal::messenger()
    ->addMessage(t('Non-breaking space is available for configuration under <a href="@administer-page">Administration > Configuration > Content authoring</a>', [
    '@administer-page' => $url
      ->toString(),
  ]));
}