You are here

function node_authlink_install in Node authorize link 8

Same name and namespace in other branches
  1. 7 node_authlink.install \node_authlink_install()

Inplementation of hook_install().

File

./node_authlink.install, line 35

Code

function node_authlink_install() {
  $messenger = \Drupal::messenger();
  if (isset($message)) {
    $messenger
      ->addStatus(t('To setup Node authorize link module go to Structure → Content types → edit → Node authorize link.'));
  }
}