function media_gallery_entity_insert in Media Gallery 7.2
Same name and namespace in other branches
- 7 media_gallery.module \media_gallery_entity_insert()
Implements hook_entity_insert().
File
- ./
media_gallery.module, line 1727
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();
}
}