You are here

function rules_action_add_node_variable_label in Rules 6

Related topics

1 string reference to 'rules_action_add_node_variable_label'
node_rules_action_info in rules/modules/node.rules.inc
Implementation of hook_rules_action_info().

File

rules/modules/node.rules_forms.inc, line 96
Rules configuration forms for the node module

Code

function rules_action_add_node_variable_label($settings) {
  return t('New content of type @type', array(
    '@type' => $settings['type'],
  ));
}