You are here

function rules_entity_category_info in Rules 7.2

Implements hook_rules_category_info() on behalf of the pseudo entity module.

Related topics

File

modules/entity.rules.inc, line 24
General entity related rules integration.

Code

function rules_entity_category_info() {
  return array(
    'rules_entity' => array(
      'label' => t('Entities'),
      'equals group' => t('Entities'),
      'weight' => -50,
    ),
  );
}