class Page in Open Social 10.3.x
Same name and namespace in other branches
- 8.9 modules/custom/social_demo/src/Plugin/DemoContent/Page.php \Drupal\social_demo\Plugin\DemoContent\Page
- 8 modules/custom/social_demo/src/Plugin/DemoContent/Page.php \Drupal\social_demo\Plugin\DemoContent\Page
- 8.2 modules/custom/social_demo/src/Plugin/DemoContent/Page.php \Drupal\social_demo\Plugin\DemoContent\Page
- 8.3 modules/custom/social_demo/src/Plugin/DemoContent/Page.php \Drupal\social_demo\Plugin\DemoContent\Page
- 8.4 modules/custom/social_demo/src/Plugin/DemoContent/Page.php \Drupal\social_demo\Plugin\DemoContent\Page
- 8.5 modules/custom/social_demo/src/Plugin/DemoContent/Page.php \Drupal\social_demo\Plugin\DemoContent\Page
- 8.6 modules/custom/social_demo/src/Plugin/DemoContent/Page.php \Drupal\social_demo\Plugin\DemoContent\Page
- 8.7 modules/custom/social_demo/src/Plugin/DemoContent/Page.php \Drupal\social_demo\Plugin\DemoContent\Page
- 8.8 modules/custom/social_demo/src/Plugin/DemoContent/Page.php \Drupal\social_demo\Plugin\DemoContent\Page
- 10.0.x modules/custom/social_demo/src/Plugin/DemoContent/Page.php \Drupal\social_demo\Plugin\DemoContent\Page
- 10.1.x modules/custom/social_demo/src/Plugin/DemoContent/Page.php \Drupal\social_demo\Plugin\DemoContent\Page
- 10.2.x modules/custom/social_demo/src/Plugin/DemoContent/Page.php \Drupal\social_demo\Plugin\DemoContent\Page
Page Plugin for demo content.
Plugin annotation
@DemoContent(
id = "page",
label = @Translation("Basic page"),
source = "content/entity/page.yml",
entity_type = "node"
)
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\Core\Plugin\PluginBase uses DependencySerializationTrait, MessengerTrait, StringTranslationTrait
Expanded class hierarchy of Page
31 string references to 'Page'
- social_event_managers_update_8004.yml in modules/
social_features/ social_event/ modules/ social_event_managers/ config/ update/ social_event_managers_update_8004.yml - modules/social_features/social_event/modules/social_event_managers/config/update/social_event_managers_update_8004.yml
- social_event_update_8805 in modules/
social_features/ social_event/ social_event.install - Install new fields for the request to join event.
- social_event_update_8808.yml in modules/
social_features/ social_event/ config/ update/ social_event_update_8808.yml - modules/social_features/social_event/config/update/social_event_update_8808.yml
- social_group_update_8802.yml in modules/
social_features/ social_group/ config/ update/ social_group_update_8802.yml - modules/social_features/social_group/config/update/social_group_update_8802.yml
- views.view.activity_stream.yml in modules/
social_features/ social_activity/ config/ optional/ views.view.activity_stream.yml - modules/social_features/social_activity/config/optional/views.view.activity_stream.yml
File
- modules/
custom/ social_demo/ src/ Plugin/ DemoContent/ Page.php, line 22
Namespace
Drupal\social_demo\Plugin\DemoContentView source
class Page extends DemoNode {
/**
* The file storage.
*
* @var \Drupal\file\FileStorageInterface
*/
protected $fileStorage;
/**
* {@inheritdoc}
*/
public function __construct(array $configuration, $plugin_id, $plugin_definition, DemoContentParserInterface $parser, UserStorageInterface $user_storage, EntityStorageInterface $group_storage, FileStorageInterface $file_storage) {
parent::__construct($configuration, $plugin_id, $plugin_definition, $parser, $user_storage, $group_storage);
$this->fileStorage = $file_storage;
}
/**
* {@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('entity_type.manager')
->getStorage('user'), $container
->get('entity_type.manager')
->getStorage('group'), $container
->get('entity_type.manager')
->getStorage('file'));
}
/**
* {@inheritdoc}
*/
protected function getEntry(array $item) {
$entry = parent::getEntry($item);
$entry['field_content_visibility'] = $item['field_content_visibility'];
// Load image by uuid and set to node.
if (!empty($item['image'])) {
$entry['field_page_image'] = $this
->prepareImage($item['image'], $item['image_alt']);
}
if (!empty($item['alias'])) {
$entry['path'] = [
'alias' => $item['alias'],
];
}
return $entry;
}
}
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:: |
|
DemoNode:: |
protected | property | The entity storage. | |
DemoNode:: |
protected | property | The user storage. | |
DemoNode:: |
public | function |
Creates content. Overrides DemoContentInterface:: |
|
DemoNode:: |
protected | function | Converts a date in the correct format. | |
DemoNode:: |
public | function | The function that checks and creates a follow on an entity. | |
DemoNode:: |
public | function | Creates a group content. | |
DemoNode:: |
public | function |
Scramble it. Overrides DemoContent:: |
|
DependencySerializationTrait:: |
protected | property | ||
DependencySerializationTrait:: |
protected | property | ||
DependencySerializationTrait:: |
public | function | 2 | |
DependencySerializationTrait:: |
public | function | 2 | |
MessengerTrait:: |
protected | property | The messenger. | 27 |
MessengerTrait:: |
public | function | Gets the messenger. | 27 |
MessengerTrait:: |
public | function | Sets the messenger. | |
Page:: |
protected | property | The file storage. | |
Page:: |
public static | function |
Creates an instance of the plugin. Overrides DemoNode:: |
|
Page:: |
protected | function |
Makes an array with data of an entity. Overrides DemoNode:: |
|
Page:: |
public | function |
Constructs a \Drupal\Component\Plugin\PluginBase object. Overrides DemoNode:: |
|
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:: |
2 |
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. | 4 |
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. |