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\ManagerCode
public static function getImageSourceFields() {
return [
'' => t('None'),
'alt' => t('Image - Alt text'),
'title' => t('Image - Title text'),
];
}