function ComponentMetadata::getThumbnailPath
Gets the thumbnail path.
Return value
string The path.
File
- 
              core/lib/ Drupal/ Core/ Theme/ Component/ ComponentMetadata.php, line 176 
Class
- ComponentMetadata
- Component metadata.
Namespace
Drupal\Core\Theme\ComponentCode
public function getThumbnailPath() : string {
  if (!isset($this->thumbnailPath)) {
    $thumbnail_path = sprintf('%s/thumbnail.png', $this->path);
    $this->thumbnailPath = file_exists($thumbnail_path) ? $thumbnail_path : '';
  }
  return $this->thumbnailPath;
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
