You are here

function media_gallery_entity_insert in Media Gallery 7

Same name and namespace in other branches
  1. 7.2 media_gallery.module \media_gallery_entity_insert()

Implements hook_entity_insert().

File

./media_gallery.module, line 1686

Code

function media_gallery_entity_insert($entity, $type) {

  // This hook is used because it always runs after Pathauto's
  // hook_taxonomy_term_insert() implementation.
  if ($type == 'taxonomy_term') {
    _media_gallery_allow_all_pathauto_aliases();
  }
}