You are here

function _entityform_get_rule_types in Entityform 7

2 calls to _entityform_get_rule_types()
EntityformTypeUIController::hook_menu in ./entityform_type.admin.inc
Overrides hook_menu() defaults.
entityform_forms in ./entityform.module
Implements hook_forms().

File

./entityform.module, line 1597
Module for the Entityform Entity - a starting point to create your own Entity and associated administration interface

Code

function _entityform_get_rule_types() {

  // Let developer remove Rules types for a site.
  $rule_types = array(
    'access',
    'submission',
    'validation',
  );
  return $rule_types;
}