You are here

public static function LightgalleryManager::getImageSourceFields in Lightgallery 8

Returns list of values that can be used as title field.

File

src/Manager/LightgalleryManager.php, line 152

Class

LightgalleryManager
Light gallery manager.

Namespace

Drupal\lightgallery\Manager

Code

public static function getImageSourceFields() {
  return [
    '' => t('None'),
    'alt' => t('Image - Alt text'),
    'title' => t('Image - Title text'),
  ];
}