You are here

function pathauto_action_info in Pathauto 6.2

Same name and namespace in other branches
  1. 7 pathauto.module \pathauto_action_info()

Implements hook_action_info().

File

./pathauto.module, line 279
Main file for the Pathauto module, which automatically generates aliases for content.

Code

function pathauto_action_info() {
  $info['pathauto_node_update_action'] = array(
    'type' => 'node',
    'description' => t('Update node alias'),
    'configurable' => FALSE,
    'hooks' => array(),
  );
  $info['pathauto_taxonomy_term_update_action'] = array(
    'type' => 'term',
    'description' => t('Update taxonomy term alias'),
    'configurable' => FALSE,
    'hooks' => array(),
  );
  $info['pathauto_user_update_action'] = array(
    'type' => 'user',
    'description' => t('Update user alias'),
    'configurable' => FALSE,
    'hooks' => array(),
  );
  return $info;
}