function users_export_help in Users Export 7.2
Same name and namespace in other branches
- 8 users_export.module \users_export_help()
Implements hook_help().
File
- ./
users_export.module, line 93 - Base module file for users_export.
Code
function users_export_help($path, $args) {
switch ($path) {
case 'admin/help#users_export':
$output = '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('Provides a turn-key solution for exporting users in several different formats included Excel, CSV, JSON, tab-delimitted, and XML.') . '</p>';
$output .= '<h3>' . t('Use') . '</h3>';
$output .= '<dl>';
$output .= '<dt>- <i>' . t('Exporting') . '</i></dt>';
$output .= '<dd>' . t('Visit <a href="@url_export">admin/people/export</a>, adjust your settings and click Download File.', array(
'@url_export' => url('admin/people/export'),
)) . '</dd>';
$output .= '<dt>- <i>' . t('API') . '</i></dt>';
$output .= '<dd>' . t('Refer to <a href="@url_code" target="blank">users_export.api.php</a> for api functions and hooks.', array(
'@url_code' => 'https://cgit.drupalcode.org/users_export/tree/users_export.api.php?h=7.x-2.x',
)) . '</dd>';
$output .= '</dl>';
return $output;
}
}