function tvi_modules_enabled in Taxonomy Views Integrator 7
Implements hook_modules_enabled().
File
- ./
tvi.module, line 53 - Allow to define views to be used instead of default drupal behavior on taxonomy terms pages.
Code
function tvi_modules_enabled($modules) {
if (in_array('uuid', $modules)) {
tvi_include('query');
_tvi_convert_tids_to_uuids();
}
}