function views_view_has_form_elements

Same name in other branches
  1. 7.x-3.x views.module \views_view_has_form_elements()

Returns TRUE if the passed-in view contains handlers with views form implementations, FALSE otherwise.

1 call to views_view_has_form_elements()
template_preprocess_views_view in theme/theme.inc
Preprocess the primary theme implementation for a view.

File

./views.module, line 1206

Code

function views_view_has_form_elements($view) {
    foreach ($view->field as $field) {
        if (property_exists($field, 'views_form_callback') || method_exists($field, 'views_form')) {
            return TRUE;
        }
    }
    $area_handlers = array_merge(array_values($view->header), array_values($view->footer));
    $empty = empty($view->result);
    foreach ($area_handlers as $area) {
        if (method_exists($area, 'views_form') && !$area->views_form_empty($empty)) {
            return TRUE;
        }
    }
    return FALSE;
}