public function ViewExecutable::hasFormElements in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/views/src/ViewExecutable.php \Drupal\views\ViewExecutable::hasFormElements()
Determines if this view has form elements.
Return value
bool Returns TRUE if this view contains handlers with views form implementations, FALSE otherwise.
File
- core/
modules/ views/ src/ ViewExecutable.php, line 2306 - Contains \Drupal\views\ViewExecutable.
Class
- ViewExecutable
- Represents a view as a whole.
Namespace
Drupal\viewsCode
public function hasFormElements() {
foreach ($this->field as $field) {
if (property_exists($field, 'views_form_callback') || method_exists($field, 'viewsForm')) {
return TRUE;
}
}
$area_handlers = array_merge(array_values($this->header), array_values($this->footer));
$empty = empty($this->result);
foreach ($area_handlers as $area) {
if (method_exists($area, 'viewsForm') && !$area
->viewsFormEmpty($empty)) {
return TRUE;
}
}
return FALSE;
}