You are here

function asset_widget_preprocess_views_view_unformatted in Asset 7

Process variables for views-view-unformatted.tpl.php.

See also

views-view-unformatted.tpl.php

File

modules/asset_widget/asset_widget.module, line 978
Code for the Asset widget module.

Code

function asset_widget_preprocess_views_view_unformatted(&$vars) {
  if (isset($vars['theme_hook_suggestion'])) {
    $function = 'asset_widget_preprocess_' . $vars['theme_hook_suggestion'];
    if (function_exists($function)) {
      $function($vars);
    }
  }
}