123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <?php
- function hook_demo_dump_alter(&$options) {
-
-
- $options['tables']['cache_table']['data'] = FALSE;
-
- foreach ($options['tables'] as $table => $dump_options) {
-
- if (strncmp($table, 'unrelated_', 10) == 0) {
- unset($options['tables'][$table]);
- }
- }
- }
|