public function Attachment::attachmentPositions in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/views/src/Plugin/views/display/Attachment.php \Drupal\views\Plugin\views\display\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 56 - Contains \Drupal\views\Plugin\views\display\Attachment.
Class
- Attachment
- The plugin that handles an attachment display.
Namespace
Drupal\views\Plugin\views\displayCode
public function attachmentPositions($position = NULL) {
$positions = array(
'before' => $this
->t('Before'),
'after' => $this
->t('After'),
'both' => $this
->t('Both'),
);
if ($position) {
return $positions[$position];
}
return $positions;
}