You are here

function favorites_help in Favorites 8.2

Implements hook_help().

File

./favorites.module, line 13
Create own favorites links.

Code

function favorites_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {
    case 'help.page.favorites':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Allows users to add paths on a site to their list of favorites') . ' </p>';
      return $output;
  }
}