public ViewExecutable::validate()
Makes sure the view is completely valid.
Return value
array An array of error strings. This will be empty if there are no validation errors.
File
- core/modules/views/src/ViewExecutable.php, line 2087
Class
- ViewExecutable
- Represents a view as a whole.
Namespace
Drupal\views
Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | public function validate() { $errors = array (); $this ->initDisplay(); $current_display = $this ->current_display; foreach ( $this ->displayHandlers as $id => $display ) { if (! empty ( $display )) { if (! empty ( $display ->display[ 'deleted' ])) { continue ; } $result = $this ->displayHandlers->get( $id )->validate(); if (! empty ( $result ) && is_array ( $result )) { $errors [ $id ] = $result ; } } } $this ->setDisplay( $current_display ); return $errors ; } |
Please login to continue.