Skip to content

Instantly share code, notes, and snippets.

@steffenr
Created August 28, 2013 15:22
Show Gist options
  • Save steffenr/6367276 to your computer and use it in GitHub Desktop.
Save steffenr/6367276 to your computer and use it in GitHub Desktop.
Debugging views queries
<?php
function mymodule_views_pre_execute(&$view) {
switch ($view->name) {
case 'my_view_name':
dpq($view->build_info['query']);
break;
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment