S3fsImageStyleRoutes.php in S3 File System 8.3
Same filename and directory in other branches
Namespace
Drupal\s3fs\RoutingFile
src/Routing/S3fsImageStyleRoutes.phpView source
<?php
namespace Drupal\s3fs\Routing;
use Drupal\Core\DependencyInjection\ContainerInjectionInterface;
use Drupal\Core\Extension\ModuleHandlerInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;
use Symfony\Component\Routing\Route;
/**
* Defines a route subscriber to register a url for serving image styles.
*/
class S3fsImageStyleRoutes implements ContainerInjectionInterface {
/**
* The module handler.
*
* @var \Drupal\Core\Extension\ModuleHandlerInterface
*/
protected $moduleHandler;
/**
* Constructs a new S3fsImageStyleRoutes object.
*
* @param \Drupal\Core\Extension\ModuleHandlerInterface $module_handler
* The module handler.
*/
public function __construct(ModuleHandlerInterface $module_handler) {
$this->moduleHandler = $module_handler;
}
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container) {
return new static($container
->get('module_handler'));
}
/**
* Returns an array of route objects.
*
* @return \Symfony\Component\Routing\Route[]
* An array of route objects.
*/
public function routes() {
$routes = [];
// Only add route for image styles if image module is enabled.
if ($this->moduleHandler
->moduleExists('image')) {
$routes['s3fs.image_styles'] = new Route('/s3/files/styles/{image_style}/{scheme}', [
'_controller' => 'Drupal\\s3fs\\Controller\\S3fsImageStyleDownloadController::deliver',
], [
'_access' => 'TRUE',
]);
// @see \Drupal\redirect\Routing\RouteSubscriber::alterRoutes()
if ($this->moduleHandler
->moduleExists('redirect')) {
$routes['s3fs.image_styles']
->setDefault('_disable_route_normalizer', TRUE);
}
}
return $routes;
}
}
Classes
Name | Description |
---|---|
S3fsImageStyleRoutes | Defines a route subscriber to register a url for serving image styles. |