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