You are here

function vpr in Views (for Drupal 7) 7.3

Same name and namespace in other branches
  1. 6.3 views.module \vpr()
  2. 6.2 views.module \vpr()

Shortcut to views_debug().

10 calls to vpr()
view::execute in includes/view.inc
Execute the view's query.
view::set_display in includes/view.inc
Set the display as current.
views_get_handler in ./views.module
Fetch a handler from the data cache.
views_get_table_join in includes/handlers.inc
Fetch a handler to join one table to a primary table from the data cache.
views_handler::ensure_my_table in includes/handlers.inc
Ensure the main table for this handler is in the query. This is used a lot.

... See full list

File

./views.module, line 1880
Primarily Drupal hooks and global API functions to manipulate views.

Code

function vpr($message, $placeholders = array()) {
  views_debug($message, $placeholders);
}