You are here

function content_rules_action_populate_field_label in Content Construction Kit (CCK) 6.2

Same name and namespace in other branches
  1. 6.3 includes/content.rules.inc \content_rules_action_populate_field_label()

Label callback: Improve the label of the action.

File

includes/content.rules.inc, line 191
Provides basic rules module support.

Code

function content_rules_action_populate_field_label($settings, $argument_labels) {
  return t("Populate @node's field '@field'", array(
    '@field' => $settings['field_name'],
  ) + $argument_labels);
}