You are here

function views_aggregator_help in Views Aggregator Plus 8

Same name and namespace in other branches
  1. 7 views_aggregator.module \views_aggregator_help()

Implements hook_help().

File

./views_aggregator.module, line 18
Module implementing post-query aggregation functions for Views tables.

Code

function views_aggregator_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {
    case 'help.page.views_aggregator':
      return t('See the <a href="@README">README</a> for View configuration instructions and examples, or browse the <a href="@project">project</a> support queue.', [
        '@project' => Url::fromUri('https://www.drupal.org/project/views_aggregator')
          ->toString(),
        '@README' => Url::fromUri('base:' . drupal_get_path('module', 'views_aggregator') . '/README.txt')
          ->toString(),
      ]);
  }
}