public static Views::getDisabledViews()
Returns an array of all disabled views.
Return value
\Drupal\views\Entity\View[] An array of loaded disabled view entities.
File
- core/modules/views/src/Views.php, line 268
Class
- Views
- Static service container wrapper for views.
Namespace
Drupal\views
Code
1 2 3 4 5 6 7 | public static function getDisabledViews() { $query = \Drupal::entityQuery( 'view' ) ->condition( 'status' , FALSE) ->execute(); return \Drupal::entityManager()->getStorage( 'view' )->loadMultiple( $query ); } |
Please login to continue.