function paragraphs_type_permissions_help

Implements hook_help().

File

paragraphs/modules/paragraphs_type_permissions/paragraphs_type_permissions.module, line 17
Contains paragraphs_type_permissions.module

Code

function paragraphs_type_permissions_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {

    // Help for the Paragraphs type permissions module.
    case 'help.page.paragraphs_type_permissions':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('The Paragraphs Type permission module allows administrators to configure permissions individually for each <em>Paragraphs type</em>. For more information, see the <a href=":online">online documentation for the Paragraphs module</a>.', [
        ':online' => 'https://www.drupal.org/node/2444881',
      ]) . '</p>';
      $output .= '<h3>' . t('Uses') . '</h3>';
      $output .= '<dt>' . t('Configuring permissions per Paragraphs type') . '</dt>';
      $output .= '<dd>' . t('Administrators can configure the permissions to view, create, edit, and delete each <em>Paragraphs type</em> individually on the <a href=":permissions">Permissions page</a>.', [
        ':permissions' => Url::fromRoute('user.admin_permissions')
          ->toString(),
      ]) . '</dd>';
      return $output;
      break;
  }
}