You are here

public static function ViewsBootstrap::getBreakpoints in Views Bootstrap 8.4

Return an array of breakpoint names.

3 calls to ViewsBootstrap::getBreakpoints()
template_preprocess_views_bootstrap_grid in ./views_bootstrap.theme.inc
Prepares variables for views grid templates.
ViewsBootstrapGrid::buildOptionsForm in src/Plugin/views/style/ViewsBootstrapGrid.php
Provide a form to edit options for this plugin.
ViewsBootstrapGrid::defineOptions in src/Plugin/views/style/ViewsBootstrapGrid.php
Definition.

File

src/ViewsBootstrap.php, line 82

Class

ViewsBootstrap
The primary class for the Views Bootstrap module.

Namespace

Drupal\views_bootstrap

Code

public static function getBreakpoints() {
  return [
    'xs',
    'sm',
    'md',
    'lg',
    'xl',
  ];
}