function drafty_1992010 in Drafty 7
Implements hook_module_implements_alter().
2 string references to 'drafty_1992010'
- DraftyEntityTranslationTest::setUp in tests/
DraftyEntityTranslationTest.test  - Sets up a Drupal site for running functional and integration tests.
 - DraftyTitleTestCase::setUp in tests/
DraftyTitleTestCase.test  - Sets up a Drupal site for running functional and integration tests.
 
File
- modules/
drafty_1992010/ drafty_1992010.module, line 11  - Cleans up translations in field_data_* tables.
 
Code
function drafty_1992010(&$implementations) {
  if (isset($implementations['drafty_1992010'])) {
    $group = $implementations['drafty_1992010'];
    unset($implementations['drafty_1992010']);
    $implementations['drafty_1992010'] = $group;
  }
}