function replicate_ui_help in Replicate UI 7
Same name and namespace in other branches
- 8 replicate_ui.module \replicate_ui_help()
Implements hook_help().
File
- ./
replicate_ui.module, line 10 - Provide a user interface for the Replicate API.
Code
function replicate_ui_help($path, $arg) {
switch ($path) {
// Main module page.
case 'admin/help#replicate_ui':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('This module provides user interface integration for the simple yet powerful Replicate API.') . '</p>';
$output .= '<h3>' . t('Uses') . '</h3>';
$output .= '<dl>';
$output .= '<dt>' . t('This module provides integration with Drupal actions which means that you can start to replicate things via the user interfaces with built in support for:') . '</dt>';
$output .= '<dd>' . t('Drupal core nodes') . '</dd>';
$output .= '<dd>' . t('Drupal core actions') . '</dd>';
$output .= '<dd>' . t('"Any" Drupal Entity available to <a href="!entityapi">Entity API</a> (see hook_menu)', array(
'!entityapi' => 'https://www.drupal.org/project/entity',
)) . '</dd>';
$output .= '<dd>' . t('<a href="!views">Views</a>', array(
'!views' => 'https://www.drupal.org/project/views',
)) . '</dd>';
$output .= '<dd>' . t('<a href="!vbo">Views Bulk Operations</a>', array(
'!vbo' => 'https://www.drupal.org/project/Views_bulk_operations',
)) . '</dd>';
$output .= '<dd>' . t('<a href="!rules">Rules</a>', array(
'!rules' => 'https://www.drupal.org/project/rules',
)) . '</dd>';
$output .= '<dd>' . t('<a href="!fc">Field Collection</a>', array(
'!fc' => 'https://www.drupal.org/project/field_collection',
)) . '</dd>';
$output .= '<dt>' . t('Other Replicate modules:') . '</dt>';
$output .= '<dd>' . t('<a href="!rfc">Replicate Field Collection</a>', array(
'!rfc' => 'https://www.drupal.org/project/replicate_field_collection',
)) . '</dd>';
$output .= '<dd>' . t('<a href="!rc">Replicate Commerce</a>', array(
'!rc' => 'https://www.drupal.org/project/replicate_commerce',
)) . '</dd>';
$output .= '<dd>' . t('<a href="!rb">Replicate Bean</a>', array(
'!rb' => 'https://www.drupal.org/project/replicate_bean',
)) . '</dd>';
$output .= '<dd>' . t('<a href="!re">Replicate Entityform</a>', array(
'!re' => 'https://www.drupal.org/project/replicate_entityform',
)) . '</dd>';
$output .= '<dd>' . t('<a href="!ru">Replicate User</a>', array(
'!ru' => 'https://www.drupal.org/project/replicate_user',
)) . '</dd>';
return $output;
}
}