class FlushSingleImageForm in Flush Single Image Styles 8
Class FlushSingleImageForm.
Hierarchy
- class \Drupal\Core\Form\FormBase implements ContainerInjectionInterface, FormInterface uses DependencySerializationTrait, LoggerChannelTrait, MessengerTrait, LinkGeneratorTrait, RedirectDestinationTrait, UrlGeneratorTrait, StringTranslationTrait
- class \Drupal\flush_single_image\Form\FlushSingleImageForm
Expanded class hierarchy of FlushSingleImageForm
2 string references to 'FlushSingleImageForm'
File
- src/
Form/ FlushSingleImageForm.php, line 16
Namespace
Drupal\flush_single_image\FormView source
class FlushSingleImageForm extends FormBase {
/**
* The entity type manager service.
*
* @var \Drupal\Core\Entity\EntityTypeManager
*/
protected $entityTypeManager;
/**
* The filesystem helper.
*
* @var \Drupal\Core\File\FileSystem
*/
protected $fileSystem;
/**
* The drupal messenger service.
*
* @var \Drupal\Core\Messenger\MessengerInterface
*/
protected $messenger;
/**
* The single image flusher service.
*
* @var \Drupal\flush_single_image\FlushSingleImage
*/
protected $flushSingleImage;
/**
* Constructs a new FlushSingleImageForm object.
*/
public function __construct(EntityTypeManagerInterface $entity_type_manager, FileSystemInterface $file_system, MessengerInterface $messenger, FlushSingleImageInterface $flush_single_image) {
$this->entityTypeManager = $entity_type_manager;
$this->fileSystem = $file_system;
$this->messenger = $messenger;
$this->flushSingleImage = $flush_single_image;
}
public static function create(ContainerInterface $container) {
return new static($container
->get('entity_type.manager'), $container
->get('file_system'), $container
->get('messenger'), $container
->get('flush_single_image'));
}
/**
* {@inheritdoc}
*/
public function getFormId() {
return 'flush_single_image_form';
}
/**
* {@inheritdoc}
*/
public function buildForm(array $form, FormStateInterface $form_state) {
$form['path'] = [
'#type' => 'textfield',
'#title' => $this
->t('File URI'),
'#description' => $this
->t('The image URI to flush image styles for. This can also be a relative path in which case the ' . file_default_scheme() . ':// scheme will be used.'),
];
$form['check'] = [
'#type' => 'fieldset',
'#title' => $this
->t('Check Styles'),
];
$form['check']['description'] = [
'#markup' => '<p class="description">Click "Check Styles" to check which styles have images cached for the provided image path.</p>',
'#prefix' => '<div id="flush-single-image-description">',
'#suffix' => '</div>',
'#title' => $this
->t('Check Styles'),
];
$form['check']['submit'] = [
'#type' => 'button',
'#value' => $this
->t('Check Styles'),
'#ajax' => [
'callback' => '::checkStyles',
'wrapper' => 'flush-single-image-description',
'progress' => [
'type' => 'throbber',
'message' => t('Checking styles...'),
],
],
'#attributes' => [
'class' => [
'form-item',
],
],
];
$form['submit'] = [
'#type' => 'submit',
'#value' => $this
->t('Flush'),
];
return $form;
}
/**
* {@inheritdoc}
*/
public function validateForm(array &$form, FormStateInterface $form_state) {
parent::validateForm($form, $form_state);
if (!$form_state
->getValue('path')) {
$form_state
->setError($form['path'], $this
->t('@name field is required.', [
'@name' => $form['path']['#title'],
]));
}
}
/**
* {@inheritdoc}
*/
public function submitForm(array &$form, FormStateInterface $form_state) {
$paths = $this->flushSingleImage
->flush($form_state
->getValue('path'));
foreach ($paths as $path) {
$this->messenger
->addMessage(t('Flushed @path', [
'@path' => $path,
]));
}
$this->messenger
->addMessage(t('Flushed all images for @path', [
'@path' => $form_state
->getValue('path'),
]));
$form_state
->setRebuild(TRUE);
}
/**
* Ajax callback to check which styles an image has cached.
*/
public static function checkStyles(array &$form, FormStateInterface $form_state) {
$paths = \Drupal::service('flush_single_image')
->flush($form_state
->getValue('path'));
if ($paths) {
$element = [
'#theme' => 'item_list',
'#title' => t('Styled Images for @path', [
'@path' => $form_state
->getValue('path'),
]),
'#prefix' => '<div id="flush-single-image-description">',
'#suffix' => '</div>',
'#items' => [],
];
foreach ($paths as $path) {
$element['#items'][] = [
'#markup' => $path,
];
}
}
else {
$element = [
'#markup' => '<p class="description">There are no image styles cached for this image.</p>',
'#prefix' => '<div id="flush-single-image-description">',
'#suffix' => '</div>',
'#title' => t('Check Styles'),
];
}
return $element;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
DependencySerializationTrait:: |
protected | property | An array of entity type IDs keyed by the property name of their storages. | |
DependencySerializationTrait:: |
protected | property | An array of service IDs keyed by property name used for serialization. | |
DependencySerializationTrait:: |
public | function | 1 | |
DependencySerializationTrait:: |
public | function | 2 | |
FlushSingleImageForm:: |
protected | property | The entity type manager service. | |
FlushSingleImageForm:: |
protected | property | The filesystem helper. | |
FlushSingleImageForm:: |
protected | property | The single image flusher service. | |
FlushSingleImageForm:: |
protected | property |
The drupal messenger service. Overrides MessengerTrait:: |
|
FlushSingleImageForm:: |
public | function |
Form constructor. Overrides FormInterface:: |
|
FlushSingleImageForm:: |
public static | function | Ajax callback to check which styles an image has cached. | |
FlushSingleImageForm:: |
public static | function |
Instantiates a new instance of this class. Overrides FormBase:: |
|
FlushSingleImageForm:: |
public | function |
Returns a unique string identifying the form. Overrides FormInterface:: |
|
FlushSingleImageForm:: |
public | function |
Form submission handler. Overrides FormInterface:: |
|
FlushSingleImageForm:: |
public | function |
Form validation handler. Overrides FormBase:: |
|
FlushSingleImageForm:: |
public | function | Constructs a new FlushSingleImageForm object. | |
FormBase:: |
protected | property | The config factory. | 1 |
FormBase:: |
protected | property | The request stack. | 1 |
FormBase:: |
protected | property | The route match. | |
FormBase:: |
protected | function | Retrieves a configuration object. | |
FormBase:: |
protected | function | Gets the config factory for this form. | 1 |
FormBase:: |
private | function | Returns the service container. | |
FormBase:: |
protected | function | Gets the current user. | |
FormBase:: |
protected | function | Gets the request object. | |
FormBase:: |
protected | function | Gets the route match. | |
FormBase:: |
protected | function | Gets the logger for a specific channel. | |
FormBase:: |
protected | function |
Returns a redirect response object for the specified route. Overrides UrlGeneratorTrait:: |
|
FormBase:: |
public | function | Resets the configuration factory. | |
FormBase:: |
public | function | Sets the config factory for this form. | |
FormBase:: |
public | function | Sets the request stack object to use. | |
LinkGeneratorTrait:: |
protected | property | The link generator. | 1 |
LinkGeneratorTrait:: |
protected | function | Returns the link generator. | |
LinkGeneratorTrait:: |
protected | function | Renders a link to a route given a route name and its parameters. | |
LinkGeneratorTrait:: |
public | function | Sets the link generator service. | |
LoggerChannelTrait:: |
protected | property | The logger channel factory service. | |
LoggerChannelTrait:: |
protected | function | Gets the logger for a specific channel. | |
LoggerChannelTrait:: |
public | function | Injects the logger channel factory. | |
MessengerTrait:: |
public | function | Gets the messenger. | 29 |
MessengerTrait:: |
public | function | Sets the messenger. | |
RedirectDestinationTrait:: |
protected | property | The redirect destination service. | 1 |
RedirectDestinationTrait:: |
protected | function | Prepares a 'destination' URL query parameter for use with \Drupal\Core\Url. | |
RedirectDestinationTrait:: |
protected | function | Returns the redirect destination service. | |
RedirectDestinationTrait:: |
public | function | Sets the redirect destination service. | |
StringTranslationTrait:: |
protected | property | The string translation service. | 1 |
StringTranslationTrait:: |
protected | function | Formats a string containing a count of items. | |
StringTranslationTrait:: |
protected | function | Returns the number of plurals supported by a given language. | |
StringTranslationTrait:: |
protected | function | Gets the string translation service. | |
StringTranslationTrait:: |
public | function | Sets the string translation service to use. | 2 |
StringTranslationTrait:: |
protected | function | Translates a string to the current language or to a given language. | |
UrlGeneratorTrait:: |
protected | property | The url generator. | |
UrlGeneratorTrait:: |
protected | function | Returns the URL generator service. | |
UrlGeneratorTrait:: |
public | function | Sets the URL generator service. | |
UrlGeneratorTrait:: |
protected | function | Generates a URL or path for a specific route based on the given parameters. |