hook_module_implements_alter called before schema is installed
I thought .module files were not supposed to be loaded and available until after .install files were run, but whatever is the intention, it is absolutely certain that at least this hook can be implemented before the module is truly installed.
<?php
/**
* Implements hook_module_implements_alter().
*/
function xray_module_implements_alter(&$implementations, $hook) {
debug('hook called');
// As hook_module_implements is invoked somehow
static $table = NULL;
if ($table === FALSE || !($table = db_table_exists('xray_hook'))) {
debug('table does not exist');
return;
}
debug('table exists');
}
?>
And the debug output from this function when the module is installed (if you get bored, there's no text after this-- and the debug output shows that it is called with the table not existing a bunch of times and then with the table existing a bunch more times.
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table does not exist'
in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table does not exist'
in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table does not exist'
in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table does not exist'
in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table does not exist'
in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table does not exist'
in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table does not exist'
in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table does not exist'
in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table does not exist'
in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table does not exist'
in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table does not exist'
in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table does not exist'
in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table does not exist'
in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table does not exist'
in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table does not exist'
in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table does not exist'
in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table does not exist'
in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table does not exist'
in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table does not exist'
in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table does not exist'
in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table does not exist'
in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table does not exist'
in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table does not exist'
in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table does not exist'
in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table does not exist'
in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table does not exist'
in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table does not exist'
in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table does not exist'
in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table does not exist'
in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table does not exist'
in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table does not exist'
in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table does not exist'
in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table does not exist'
in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table does not exist'
in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table does not exist'
in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table does not exist'
in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table does not exist'
in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table does not exist'
in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table does not exist'
in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table does not exist'
in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table does not exist'
in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table does not exist'
in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table does not exist'
in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table does not exist'
in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table does not exist'
in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table does not exist'
in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table does not exist'
in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table does not exist'
in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table does not exist'
in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table does not exist'
in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table does not exist'
in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table does not exist'
in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table does not exist'
in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table does not exist'
in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table does not exist'
in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table does not exist'
in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table does not exist'
in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table does not exist'
in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table does not exist'
in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table does not exist'
in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table does not exist'
in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table does not exist'
in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table does not exist'
in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table does not exist'
in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table does not exist'
in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table does not exist'
in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table does not exist'
in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table does not exist'
in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table does not exist'
in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table does not exist'
in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table does not exist'
in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table does not exist'
in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table does not exist'
in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table does not exist'
in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table does not exist'
in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table does not exist'
in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table does not exist'
in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table does not exist'
in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table does not exist'
in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table does not exist'
in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table does not exist'
in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table does not exist'
in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table does not exist'
in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table does not exist'
in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table does not exist'
in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table does not exist'
in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table does not exist'
in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* The configuration options have been saved.
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table does not exist'
in xray_module_implements_alter() (line 176 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table exists'
in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table exists'
in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table exists'
in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table exists'
in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table exists'
in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table exists'
in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table exists'
in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table exists'
in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table exists'
in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table exists'
in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table exists'
in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table exists'
in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table exists'
in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table exists'
in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table exists'
in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table exists'
in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table exists'
in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table exists'
in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table exists'
in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table exists'
in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table exists'
in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table exists'
in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table exists'
in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table exists'
in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table exists'
in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table exists'
in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table exists'
in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table exists'
in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table exists'
in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table exists'
in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table exists'
in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table exists'
in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table exists'
in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table exists'
in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table exists'
in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table exists'
in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table exists'
in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table exists'
in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table exists'
in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table exists'
in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table exists'
in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table exists'
in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table exists'
in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table exists'
in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table exists'
in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table exists'
in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table exists'
in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table exists'
in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table exists'
in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table exists'
in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table exists'
in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table exists'
in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table exists'
in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table exists'
in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table exists'
in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table exists'
in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table exists'
in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table exists'
in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table exists'
in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table exists'
in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table exists'
in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table exists'
in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table exists'
in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table exists'
in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table exists'
in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table exists'
in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table exists'
in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table exists'
in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table exists'
in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table exists'
in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table exists'
in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'hook called'
in xray_module_implements_alter() (line 172 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
* Debug:
'table exists'
in xray_module_implements_alter() (line 179 of /home/ben/code/dgd7/drupal/sites/default/modules/xray/xray.module).
Comments
Post new comment