function pathauto_node_operations in Pathauto 7
Same name and namespace in other branches
- 5.2 pathauto.module \pathauto_node_operations()
- 6.2 pathauto.module \pathauto_node_operations()
- 6 pathauto.module \pathauto_node_operations()
Implements hook_node_operations().
File
- ./pathauto.module, line 723 
- Main file for the Pathauto module, which automatically generates aliases for content.
Code
function pathauto_node_operations() {
  $operations['pathauto_update_alias'] = array(
    'label' => t('Update URL alias'),
    'callback' => 'pathauto_node_update_alias_multiple',
    'callback arguments' => array(
      'bulkupdate',
      array(
        'message' => TRUE,
      ),
    ),
  );
  return $operations;
}