I have a view named "taxonomy_term_custom." The preprocess code below works to do some specific stuff for this view, but I would like to override the hook like this:
function mywebsite_glue_preprocess_views_view__taxonomy_term_custom(&$vars) { } Is this possible?
function mywebsite_glue_preprocess_views_view(&$vars) { if($vars['view']->name == 'taxonomy_term_custom'){ dpm($vars); // do stuff } }