abstract class DemoFile in Open Social 8.3
Same name and namespace in other branches
- 8.9 modules/custom/social_demo/src/DemoFile.php \Drupal\social_demo\DemoFile
- 8 modules/custom/social_demo/src/DemoFile.php \Drupal\social_demo\DemoFile
- 8.2 modules/custom/social_demo/src/DemoFile.php \Drupal\social_demo\DemoFile
- 8.4 modules/custom/social_demo/src/DemoFile.php \Drupal\social_demo\DemoFile
- 8.5 modules/custom/social_demo/src/DemoFile.php \Drupal\social_demo\DemoFile
- 8.6 modules/custom/social_demo/src/DemoFile.php \Drupal\social_demo\DemoFile
- 8.7 modules/custom/social_demo/src/DemoFile.php \Drupal\social_demo\DemoFile
- 8.8 modules/custom/social_demo/src/DemoFile.php \Drupal\social_demo\DemoFile
- 10.3.x modules/custom/social_demo/src/DemoFile.php \Drupal\social_demo\DemoFile
- 10.0.x modules/custom/social_demo/src/DemoFile.php \Drupal\social_demo\DemoFile
- 10.1.x modules/custom/social_demo/src/DemoFile.php \Drupal\social_demo\DemoFile
- 10.2.x modules/custom/social_demo/src/DemoFile.php \Drupal\social_demo\DemoFile
Class DemoFile.
@package Drupal\social_demo
Hierarchy
- class \Drupal\Component\Plugin\PluginBase implements DerivativeInspectionInterface, PluginInspectionInterface
- class \Drupal\Core\Plugin\PluginBase uses DependencySerializationTrait, MessengerTrait, StringTranslationTrait
- class \Drupal\social_demo\DemoContent implements DemoContentInterface
- class \Drupal\social_demo\DemoFile
- class \Drupal\social_demo\DemoContent implements DemoContentInterface
- class \Drupal\Core\Plugin\PluginBase uses DependencySerializationTrait, MessengerTrait, StringTranslationTrait
Expanded class hierarchy of DemoFile
1 file declares its use of DemoFile
File
- modules/
custom/ social_demo/ src/ DemoFile.php, line 17
Namespace
Drupal\social_demoView source
abstract class DemoFile extends DemoContent {
/**
* The crop manager.
*
* @var \Drupal\image_widget_crop\ImageWidgetCropManager
*/
protected $imageWidgetCropManager;
/**
* The entity type manager.
*
* @var \Drupal\Core\Entity\EntityTypeManagerInterface
*/
protected $entityTypeManager;
/**
* DemoFile constructor.
*/
public function __construct(array $configuration, $plugin_id, $plugin_definition, DemoContentParserInterface $parser, ImageWidgetCropManager $image_widget_crop_manager, EntityTypeManagerInterface $entity_type_manager) {
parent::__construct($configuration, $plugin_id, $plugin_definition);
$this->parser = $parser;
$this->imageWidgetCropManager = $image_widget_crop_manager;
$this->entityTypeManager = $entity_type_manager;
}
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
return new static($configuration, $plugin_id, $plugin_definition, $container
->get('social_demo.yaml_parser'), $container
->get('image_widget_crop.manager'), $container
->get('entity_type.manager'));
}
/**
* {@inheritdoc}
*/
public function createContent() {
$data = $this
->fetchData();
foreach ($data as $uuid => $item) {
// Must have uuid and same key value.
if ($uuid !== $item['uuid']) {
drush_log(dt("File with uuid: {$uuid} has a different uuid in content."), LogLevel::ERROR);
continue;
}
// Check whether file with same uuid already exists.
$files = $this->entityStorage
->loadByProperties([
'uuid' => $uuid,
]);
if ($files) {
drush_log(dt("File with uuid: {$uuid} already exists."), LogLevel::WARNING);
continue;
}
// Copy file from module.
$item['uri'] = file_unmanaged_copy($this->parser
->getPath($item['path'], $this
->getModule(), $this
->getProfile()), $item['uri'], FILE_EXISTS_REPLACE);
$item['uid'] = NULL;
$entry = $this
->getEntry($item);
$entity = $this->entityStorage
->create($entry);
$entity
->save();
if (!$entity
->id()) {
continue;
}
$this->content[$entity
->id()] = $entity;
if (!empty($item['crops'])) {
$this
->applyCrops($item, $entity);
}
}
return $this->content;
}
/**
* {@inheritdoc}
*/
protected function getEntry(array $item) {
$entry = [
'uuid' => $item['uuid'],
'langcode' => $item['langcode'],
'uid' => $item['uid'],
'status' => $item['status'],
'uri' => $item['uri'],
];
return $entry;
}
/**
* Crops the images.
*
* @param array $item
* The array with items.
* @param \Drupal\file\FileInterface $entity
* The FileInterface entity.
*/
protected function applyCrops(array $item, FileInterface $entity) {
// Add coordinates for cropping images.
foreach ($item['crops'] as $crop_name => $data) {
$crop_type = $this->entityTypeManager
->getStorage('crop_type')
->load($crop_name);
if (!empty($crop_type) && $crop_type instanceof CropType) {
$this->imageWidgetCropManager
->applyCrop($data, [
'file-uri' => $item['uri'],
'file-id' => $entity
->id(),
], $crop_type);
}
}
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
DemoContent:: |
protected | property | Contains the created content. | |
DemoContent:: |
protected | property | Contains data from a file. | |
DemoContent:: |
protected | property | Contains the entity storage. | |
DemoContent:: |
protected | property | Parser. | |
DemoContent:: |
protected | property | Profile. | |
DemoContent:: |
protected | function | Extract the mention from the content by [~Uuid]. | |
DemoContent:: |
public | function |
Returns quantity of created items. Overrides DemoContentInterface:: |
1 |
DemoContent:: |
protected | function | Gets the data from a file. | |
DemoContent:: |
public | function |
Returns the module name. Overrides DemoContentInterface:: |
|
DemoContent:: |
public | function |
Returns the profile. Overrides DemoContentInterface:: |
|
DemoContent:: |
public | function |
Returns the file name. Overrides DemoContentInterface:: |
|
DemoContent:: |
protected | function | Load entity by uuid. | |
DemoContent:: |
protected | function | Prepares data about an image. | |
DemoContent:: |
public | function |
Removes content. Overrides DemoContentInterface:: |
|
DemoContent:: |
public | function |
Set entity storage. Overrides DemoContentInterface:: |
|
DemoContent:: |
public | function |
Sets the used profile. Overrides DemoContentInterface:: |
|
DemoFile:: |
protected | property | The entity type manager. | |
DemoFile:: |
protected | property | The crop manager. | |
DemoFile:: |
protected | function | Crops the images. | |
DemoFile:: |
public static | function |
Creates an instance of the plugin. Overrides ContainerFactoryPluginInterface:: |
|
DemoFile:: |
public | function |
Creates content. Overrides DemoContentInterface:: |
|
DemoFile:: |
protected | function |
Makes an array with data of an entity. Overrides DemoContent:: |
|
DemoFile:: |
public | function |
DemoFile constructor. Overrides PluginBase:: |
|
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 | |
MessengerTrait:: |
protected | property | The messenger. | 29 |
MessengerTrait:: |
public | function | Gets the messenger. | 29 |
MessengerTrait:: |
public | function | Sets the messenger. | |
PluginBase:: |
protected | property | Configuration information passed into the plugin. | 1 |
PluginBase:: |
protected | property | The plugin implementation definition. | 1 |
PluginBase:: |
protected | property | The plugin_id. | |
PluginBase:: |
constant | A string which is used to separate base plugin IDs from the derivative ID. | ||
PluginBase:: |
public | function |
Gets the base_plugin_id of the plugin instance. Overrides DerivativeInspectionInterface:: |
|
PluginBase:: |
public | function |
Gets the derivative_id of the plugin instance. Overrides DerivativeInspectionInterface:: |
|
PluginBase:: |
public | function |
Gets the definition of the plugin implementation. Overrides PluginInspectionInterface:: |
3 |
PluginBase:: |
public | function |
Gets the plugin_id of the plugin instance. Overrides PluginInspectionInterface:: |
|
PluginBase:: |
public | function | Determines if the plugin is configurable. | |
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. |