You are here

function photos_help in Album Photos 8.4

Same name and namespace in other branches
  1. 8.5 photos.module \photos_help()
  2. 6.0.x photos.module \photos_help()

Implements hook_help().

File

./photos.module, line 1776
Implementation of photos.module.

Code

function photos_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {
    case 'help.page.photos':
      return t('<p>The Album Photos module provides a solution for creating photo albums and uploading multiple images. The module automatically creates the photos content type which creates a node that contains all the photos (saved as managed files).</p>
      <p>The Album Photos module comes with the Photo Access sub-module that provides settings for each album including open, locked, designated users, or password required.</p>
      <p>See the <a href=":project_page">project page on Drupal.org</a> for more details.</p>', [
        ':project_page' => 'https://www.drupal.org/project/photos',
      ]);
  }
}