You are here

function nodewords_user_operations in Nodewords: D6 Meta Tags 6

Implements hook_user_operations().

File

./nodewords.module, line 726
Implement an API that other modules can use to implement meta tags.

Code

function nodewords_user_operations() {
  $operations = array(
    'delete_metatags' => array(
      'label' => t('Delete meta tags'),
      'callback' => 'nodewords_mass_update',
      'callback arguments' => array(
        'type' => NODEWORDS_TYPE_USER,
        'operation' => 'delete',
      ),
    ),
  );
  return $operations;
}