You are here

function pathauto_node_operations in Pathauto 5.2

Same name and namespace in other branches
  1. 6.2 pathauto.module \pathauto_node_operations()
  2. 6 pathauto.module \pathauto_node_operations()
  3. 7 pathauto.module \pathauto_node_operations()

Implementation of hook_node_operations().

File

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

Code

function pathauto_node_operations() {
  $operations = array(
    'update_alias' => array(
      'label' => t('Update path alias'),
      'callback' => 'pathauto_node_operations_update',
    ),
  );
  return $operations;
}