AnchorTrait.php in Image Effects 8
File
src/Plugin/ImageEffect/AnchorTrait.php
View source
<?php
namespace Drupal\image_effects\Plugin\ImageEffect;
trait AnchorTrait {
protected function anchorOptions() {
return [
'left-top' => $this
->t('Top left'),
'center-top' => $this
->t('Top center'),
'right-top' => $this
->t('Top right'),
'left-center' => $this
->t('Center left'),
'center-center' => $this
->t('Center'),
'right-center' => $this
->t('Center right'),
'left-bottom' => $this
->t('Bottom left'),
'center-bottom' => $this
->t('Bottom center'),
'right-bottom' => $this
->t('Bottom right'),
];
}
}