function rules_admin_rule_proxy::get_rule_name in Rules 6
Gets the rule's name
3 calls to rules_admin_rule_proxy::get_rule_name()
- rules_admin_rule_proxy::delete_rule in rules_admin/
rules_admin.rule_proxy.inc - Deletes the rule configuration from the database
- rules_admin_rule_proxy::save_rule in rules_admin/
rules_admin.rule_proxy.inc - Saves a the rule in the database
- rules_admin_rule_proxy::_get_available_variables in rules_admin/
rules_admin.rule_proxy.inc - Gets new variables defined by actions in rules, which are evaluated until this rule.
File
- rules_admin/
rules_admin.rule_proxy.inc, line 52 - Contains the rules proxy class
Class
- rules_admin_rule_proxy
- This is a smally proxy for the real rule. It provides some useful operations for the admin UI. It builds a small index for the elements of a rule, so that they can be easily identified and modified.
Code
function get_rule_name() {
return $this->_rule_name;
}