blob: 0ef321d2d5d2e48cc4f15ba05db4a51a7a5d03b9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<?php
/**
* @file
* Installation and update functions.
*/
/**
* Implements hook_uninstall().
*/
function views_bulk_operations_uninstall() {
// Remove VBO actions that are now orphaned.
actions_synchronize(TRUE);
}
|