function hook_views_navigation_stored_query_alter in Views navigation 7
Alter the query and the related view stored by Views navigation.
1 invocation of hook_views_navigation_stored_query_alter()
- views_navigation_store_query in ./
views_navigation.inc - Store a view query in cache.
File
- ./
views_navigation.api.php, line 25 - API hooks provided by the Views navigation module.
Code
function hook_views_navigation_stored_query_alter(&$query_to_store, $view) {
$query_to_store->view->some_property = 'some value';
}