function rules_forms_help in Rules Forms Support 7.2
Same name and namespace in other branches
- 7 rules_forms.module \rules_forms_help()
Implements hook_help().
File
- ./
rules_forms.module, line 13 - Rules Forms Support provides events, conditions, and actions for site forms.
Code
function rules_forms_help($path, $arg) {
switch ($path) {
case 'admin/help#rules_forms':
return '<p>' . t('Rules Forms Support provides Rules events, conditions, and actions for any form built with the Drupal form API. To activate events for a form you must first visit <a href="!admin">Rules Forms settings</a> and enable activation messages.', array(
'!admin' => url(RULES_FORMS_ADMIN_PATH),
)) . '</p>';
case RULES_FORMS_ADMIN_PATH:
return '<p>' . t('Settings and overview of form events and active elements.') . '</p>';
}
}