function domain_views_theme in Domain Views 7
Implement hook_theme().
File
- ./domain_views.module, line 57 
- Provides a Views filter for the Domain Access module.
Code
function domain_views_theme() {
  return array(
    'domain_views_view_multiple_field' => array(
      'variables' => array(
        'items' => NULL,
        'field' => NULL,
        'values' => NULL,
      ),
    ),
  );
}