You are here

function rules_help in Rules 6

Same name and namespace in other branches
  1. 8.3 rules.module \rules_help()
  2. 7.2 rules.module \rules_help()

Implementation of hook_help().

File

rules_admin/rules_admin.module, line 19
Rules administration UI

Code

function rules_help($path, $arg) {
  switch ($path) {
    case RULES_ADMIN_SET_PATH:
      return '<p>' . t('Rule sets are similar in concept to subroutines and can be invoked by actions or manually by code or another module.') . '</p>';
    case RULES_ADMIN_TRIGGER_PATH:
      return '<p>' . t('This is an overview about rules that are triggered by a certain event. A rule may contain conditions and actions, which are executed only when the conditions are met.') . '</p>';
  }
}