Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. Attachment.php

function Attachment::attachmentPositions

2 calls to Attachment::attachmentPositions()
Attachment::buildOptionsForm in core/modules/views/src/Plugin/views/display/Attachment.php
Provide the default form for setting options.
Attachment::optionsSummary in core/modules/views/src/Plugin/views/display/Attachment.php
Provide the summary for attachment options in the views UI.

File

core/modules/views/src/Plugin/views/display/Attachment.php, line 52

Class

Attachment
The plugin that handles an attachment display.

Namespace

Drupal\views\Plugin\views\display

Code

public function attachmentPositions($position = NULL) {
    $positions = [
        'before' => $this->t('Before'),
        'after' => $this->t('After'),
        'both' => $this->t('Both'),
    ];
    if ($position) {
        return $positions[$position];
    }
    return $positions;
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal