function noderelationships_views_pre_execute in Node Relationships 6
Implementation of hook_views_pre_execute().
See also
noderelationships_customize_backref_view()
File
- ./
noderelationships.module, line 117 - This is the main script for the noderelationships module. It merely contains the implementation of hooks invoked by Drupal core, CCK, Views, etc. All common functions are externalized into several scripts that are included on demand.
Code
function noderelationships_views_pre_execute(&$view) {
if (!empty($view->noderelationships_breadcrumb)) {
drupal_set_breadcrumb($view->noderelationships_breadcrumb);
}
}