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