You are here

function _composite_views_filter_view_has_composite_filter in Composite Views Filter 7

Helper to determine if a View has a composite filter.

Deprecated

in favor of the plural version.

File

./composite_views_filter.module, line 234

Code

function _composite_views_filter_view_has_composite_filter($view) {
  $handlers = _composite_views_filter_view_has_composite_filters($view);
  return reset($handlers) ?: FALSE;
}