You are here

function instagram_feeds_help in Instagram Feeds 8

Same name and namespace in other branches
  1. 7 instagram_feeds.module \instagram_feeds_help()

Implements hook_help().

File

./instagram_feeds.module, line 14
Hooks and custom functions for instagram_feeds module.

Code

function instagram_feeds_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {
    case 'help.page.instagram_feeds':
      $element = _instagram_feeds_api_help();
      $element['#open'] = TRUE;
      return $element;
    case 'instagram_feeds.settings':
      return _instagram_feeds_api_help();
  }
}