function cmis_help in CMIS API 8.2
Same name and namespace in other branches
- 8 cmis.module \cmis_help()
- 3.0.x cmis.module \cmis_help()
Implements hook_help().
File
- ./
cmis.module, line 17
Code
function cmis_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
// Main module help for the cmis module.
case 'help.page.cmis':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('CMIS implementation for interacting with a CMIS compliant repository') . '</p>';
return $output;
}
}