class Post in Open Social 8
Same name in this branch
- 8 modules/social_features/social_post/src/Entity/Post.php \Drupal\social_post\Entity\Post
- 8 modules/custom/social_demo/src/Plugin/DemoContent/Post.php \Drupal\social_demo\Plugin\DemoContent\Post
Same name and namespace in other branches
- 8.9 modules/custom/social_demo/src/Plugin/DemoContent/Post.php \Drupal\social_demo\Plugin\DemoContent\Post
- 8.2 modules/custom/social_demo/src/Plugin/DemoContent/Post.php \Drupal\social_demo\Plugin\DemoContent\Post
- 8.3 modules/custom/social_demo/src/Plugin/DemoContent/Post.php \Drupal\social_demo\Plugin\DemoContent\Post
- 8.4 modules/custom/social_demo/src/Plugin/DemoContent/Post.php \Drupal\social_demo\Plugin\DemoContent\Post
- 8.5 modules/custom/social_demo/src/Plugin/DemoContent/Post.php \Drupal\social_demo\Plugin\DemoContent\Post
- 8.6 modules/custom/social_demo/src/Plugin/DemoContent/Post.php \Drupal\social_demo\Plugin\DemoContent\Post
- 8.7 modules/custom/social_demo/src/Plugin/DemoContent/Post.php \Drupal\social_demo\Plugin\DemoContent\Post
- 8.8 modules/custom/social_demo/src/Plugin/DemoContent/Post.php \Drupal\social_demo\Plugin\DemoContent\Post
- 10.3.x modules/custom/social_demo/src/Plugin/DemoContent/Post.php \Drupal\social_demo\Plugin\DemoContent\Post
- 10.0.x modules/custom/social_demo/src/Plugin/DemoContent/Post.php \Drupal\social_demo\Plugin\DemoContent\Post
- 10.1.x modules/custom/social_demo/src/Plugin/DemoContent/Post.php \Drupal\social_demo\Plugin\DemoContent\Post
- 10.2.x modules/custom/social_demo/src/Plugin/DemoContent/Post.php \Drupal\social_demo\Plugin\DemoContent\Post
Post Plugin for demo content.
Plugin annotation
@DemoContent(
id = "post",
label = @Translation("Post"),
source = "content/entity/post.yml",
entity_type = "post"
)
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\DemoEntity
- class \Drupal\social_demo\Plugin\DemoContent\Post
- class \Drupal\social_demo\DemoEntity
- class \Drupal\social_demo\DemoContent implements DemoContentInterface
- class \Drupal\Core\Plugin\PluginBase uses DependencySerializationTrait, MessengerTrait, StringTranslationTrait
Expanded class hierarchy of Post
6 string references to 'Post'
- field.field.post.photo.field_post.yml in modules/
social_features/ social_post/ modules/ social_post_photo/ config/ install/ field.field.post.photo.field_post.yml - modules/social_features/social_post/modules/social_post_photo/config/install/field.field.post.photo.field_post.yml
- field.field.post.post.field_post.yml in modules/
social_features/ social_post/ config/ install/ field.field.post.post.field_post.yml - modules/social_features/social_post/config/install/field.field.post.post.field_post.yml
- PostListBuilder::buildHeader in modules/
social_features/ social_post/ src/ PostListBuilder.php - Builds the header row for the entity listing.
- PostViewsData::getViewsData in modules/
social_features/ social_post/ src/ Entity/ PostViewsData.php - Returns views data for the entity type.
- social_post.post_type.post.yml in modules/
social_features/ social_post/ config/ install/ social_post.post_type.post.yml - modules/social_features/social_post/config/install/social_post.post_type.post.yml
File
- modules/
custom/ social_demo/ src/ Plugin/ DemoContent/ Post.php, line 17
Namespace
Drupal\social_demo\Plugin\DemoContentView source
class Post extends DemoEntity {
/**
* {@inheritdoc}
*/
public function getEntry(array $item) {
$recipient_id = NULL;
$group_id = NULL;
$file_id = NULL;
$entry = parent::getEntry($item);
$created = $this
->createDate($item['created']);
if (!empty($item['recipient']) && ($recipient = $this
->loadByUuid('user', $item['recipient']))) {
$recipient_id = $recipient
->id();
}
if (!empty($item['group']) && ($group = $this
->loadByUuid('group', $item['group']))) {
$group_id = $group
->id();
}
// Load image by uuid and set to post.
if (!empty($item['field_post_image']) && ($file = $this
->loadByUuid('file', $item['field_post_image']))) {
$file_id = $file
->id();
}
return $entry + [
'langcode' => $item['langcode'],
'type' => $item['type'],
'field_post' => [
'value' => $this
->checkMentionOrLinkByUuid($item['field_post']),
'format' => 'basic_html',
],
'field_visibility' => $item['field_visibility'],
'field_recipient_user' => $recipient_id,
'field_recipient_group' => $group_id,
'field_post_image' => $file_id,
'user_id' => $this
->loadByUuid('user', $item['uid'])
->id(),
'created' => $created,
'changed' => $created,
];
}
/**
* Converts a date in the correct format.
*
* @param string $date_string
* The date.
*
* @return int|false
* Returns a timestamp on success, false otherwise.
*/
protected function createDate($date_string) {
if ($date_string === 'now') {
return time();
}
// Split from delimiter.
$timestamp = explode('|', $date_string);
$date = strtotime($timestamp[0]);
$date = date('Y-m-d', $date) . 'T' . $timestamp[1] . ':00';
return strtotime($date);
}
}
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:: |
public | function |
Removes content. Overrides DemoContentInterface:: |
|
DemoContent:: |
public | function |
Set entity storage. Overrides DemoContentInterface:: |
|
DemoContent:: |
public | function |
Sets the used profile. Overrides DemoContentInterface:: |
|
DemoEntity:: |
public static | function |
Creates an instance of the plugin. Overrides ContainerFactoryPluginInterface:: |
|
DemoEntity:: |
public | function |
Creates content. Overrides DemoContentInterface:: |
|
DemoEntity:: |
public | function |
DemoEntity 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. | |
Post:: |
protected | function | Converts a date in the correct format. | |
Post:: |
public | function |
Makes an array with data of an entity. Overrides DemoEntity:: |
|
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. |