You are here

function userpoints_rules_get_categories in User Points 7

Same name and namespace in other branches
  1. 7.2 userpoints_rules/userpoints_rules.rules.inc \userpoints_rules_get_categories()

Wrapper function for userpoints_get_categories().

Rules.module uses different arguments for option list callbacks than userpoints_get_categories expects.

2 string references to 'userpoints_rules_get_categories'
userpoints_rules_rules_action_info in ./userpoints_rules.rules.inc
Implements hook_rules_action_info().
_userpoints_userpoints_transaction_properties in ./userpoints.module
Returns properties of userpoints_transaction data object.

File

./userpoints_rules.rules.inc, line 109
Provide better integration into the rules group

Code

function userpoints_rules_get_categories() {
  return userpoints_get_categories();
}