Install
Works with Drupal: 8.xUsing Composer to manage Drupal site dependencies
Alternative installation files
Download tar.gz
8.49 KB
MD5: 89b6e5fa7deee9017dde981c71a8229e
SHA-1: ec117ef3d974de968ef8171fead1f965f2d3dade
SHA-256: f1b487349c640bfabebcd53f9fcab032fa6470dbe8e010618353a65ee821f0bb
Download zip
10.5 KB
MD5: e537e374d9bef39be7f6c3deea5d73a3
SHA-1: 1cb4209c07757052c06b4e9ff6c7756adbda9a83
SHA-256: a59dc07b800add6392ccbc4d2e3dd40085dd933109f7bc9665fb1a559043df7d
Release notes
Support weight value definition in QueueWorker annotation.
/**
* Process a queue of media items to fetch their thumbnails.
*
* @QueueWorker(
* id = "custom_media_entity_thumbnail",
* title = @Translation("Custom thumbnail downloader"),
* cron = {
* "time" = 60,
* "weight" = -10,
* }
* )
*/
class CustomThumbnailDownloader extends ThumbnailDownloader {}
To override the default weight value use Queue Order UI module.