| 1 | <?php |
||
| 19 | class Plugin extends BasePlugin |
||
| 20 | { |
||
| 21 | /** |
||
| 22 | * Cache key for image thumbnails |
||
| 23 | */ |
||
| 24 | public const CACHE_KEY = 'uploadsThumbnails'; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * {@inheritdoc} |
||
| 28 | */ |
||
| 29 | public function bootstrap(PluginApplicationInterface $app) |
||
| 37 | |||
| 38 | /** |
||
| 39 | * Configures the thumbnail cache |
||
| 40 | * |
||
| 41 | * @return void |
||
| 42 | */ |
||
| 43 | public static function configureCache(): void |
||
| 60 | } |
||
| 61 |