You are here

function rules_action_load_comment_variable_label in Rules 6

Action "Load a comment by id" variable label callback.

Related topics

1 string reference to 'rules_action_load_comment_variable_label'
comment_rules_action_info in rules/modules/comment.rules.inc
Implementation of hook_rules_action_info().

File

rules/modules/comment.rules_forms.inc, line 15
Rules configuration forms for the comment module.

Code

function rules_action_load_comment_variable_label($settings) {
  return t('Comment with id @id', array(
    '@id' => $settings['cid'],
  ));
}