You are here

class Vefl in Views exposed form layout 8

Same name and namespace in other branches
  1. 8.3 src/Vefl.php \Drupal\vefl\Vefl
  2. 8.2 src/Vefl.php \Drupal\vefl\Vefl

Helper class that holds all the main Display Suite helper functions.

Hierarchy

  • class \Drupal\vefl\Vefl

Expanded class hierarchy of Vefl

1 file declares its use of Vefl
VeflBasic.php in src/Plugin/views/exposed_form/VeflBasic.php

File

src/Vefl.php, line 10

Namespace

Drupal\vefl
View source
class Vefl {

  /**
   * Gets Display Suite layouts.
   */
  public static function getLayouts() {
    static $layouts = FALSE;
    if (!$layouts) {
      $layouts = Layout::layoutPluginManager()
        ->getDefinitions();
    }
    return $layouts;
  }

  /**
   * Gets Display Suite layouts.
   */
  public static function getLayoutOptions($layouts = []) {
    if (empty($layouts)) {
      $layouts = Vefl::getLayouts();
    }

    // Converts layouts array to options.
    $layout_options = [];
    foreach ($layouts as $key => $layout_definition) {
      $optgroup = t('Other');

      // Create new layout option group.
      if (!empty($layout_definition['category'])) {
        $optgroup = (string) $layout_definition['category'];
      }
      if (!isset($layout_options[$optgroup])) {
        $layout_options[$optgroup] = [];
      }

      // Stack the layout.
      $layout_options[$optgroup][$key] = $layout_definition['label'];
    }

    // If there is only one $optgroup, move it to the root.
    if (count($layout_options) < 2) {
      $layout_options = reset($layout_options);
    }
    return $layout_options;
  }

  /**
   * Returns action fields for views exposed form.
   */
  public static function getFormActions() {
    $actions = [
      'sort_by' => t('Sort by'),
      'sort_order' => t('Sort order'),
      'items_per_page' => t('Items per page'),
      'offset' => t('Offset'),
      'submit' => t('Submit button'),
      'reset' => t('Reset button'),
    ];
    return $actions;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
Vefl::getFormActions public static function Returns action fields for views exposed form.
Vefl::getLayoutOptions public static function Gets Display Suite layouts.
Vefl::getLayouts public static function Gets Display Suite layouts.