function photos_access_help in Album Photos 8.4
Same name and namespace in other branches
- 8.5 photos_access/photos_access.module \photos_access_help()
- 6.0.x photos_access/photos_access.module \photos_access_help()
Implements hook_help().
File
- photos_access/
photos_access.module, line 26 - Implementation of photos_access.module.
Code
function photos_access_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
case 'help.page.photos_access':
$output = '';
$output .= '<p>' . t('Advanced photo access and privacy settings.') . '</p>';
$output .= '<p>' . t('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>';
$output .= '<p>' . t('See the <a href="@project_page">project page on Drupal.org</a> for more details.', [
'@project_page' => 'https://www.drupal.org/project/photos',
]) . '</p>';
return $output;
}
}