You are here

function rules_action_node_path_alias_help in Rules 6

Related topics

File

rules/modules/path.rules_forms.inc, line 117
Rules configuration forms for the path module

Code

function rules_action_node_path_alias_help() {
  return t('This action only works if the acting user has %perm1 or %perm2 permsissions. If this does not suit, use the generic "Create or delete an URL alias" action together with the existing system path "node/{ID}".', array(
    '%perm1' => t('create url aliases'),
    '%perm2' => t('administer url aliases'),
  ));
}