function taxonomy_hook_info

6.x taxonomy.module taxonomy_hook_info()

Implementation of hook_hook_info().

File

drupal-6.x/modules/taxonomy/taxonomy.module, line 1408
Enables the organization of content into categories.

Code

function taxonomy_hook_info() {
  return array(
    'taxonomy' => array(
      'taxonomy' => array(
        'insert' => array(
          'runs when' => t('After saving a new term to the database'),
        ),
        'update' => array(
          'runs when' => t('After saving an updated term to the database'),
        ),
        'delete' => array(
          'runs when' => t('After deleting a term')
        ),
      ),
    ),
  );
}