class ContentTranslationHandler in Persian Date for Drupal 8 8.4
Hierarchy
- class \Drupal\content_translation\ContentTranslationHandler implements ContentTranslationHandlerInterface, EntityHandlerInterface uses DependencySerializationTrait, EntityChangesDetectionTrait, StringTranslationTrait
- class \Drupal\persian_date\TranslationHandler\ContentTranslationHandler
Expanded class hierarchy of ContentTranslationHandler
File
- src/
TranslationHandler/ ContentTranslationHandler.php, line 13
Namespace
Drupal\persian_date\TranslationHandlerView source
class ContentTranslationHandler extends BaseContentTranslationHandler {
public function entityFormEntityBuild($entity_type, EntityInterface $entity, array $form, FormStateInterface $form_state) {
parent::entityFormEntityBuild($entity_type, $entity, $form, $form_state);
if (!PersianLanguageDiscovery::isPersian()) {
return;
}
$values =& $form_state
->getValue('content_translation', []);
$metadata = $this->manager
->getTranslationMetadata($entity);
$created = preg_replace('/ \\+.*?$/', '', $values['created']);
$time = !empty($values['created']) ? PersianDrupalDateTime::createFromFormat('Y-m-d H:i:s', $created, null, [
'validate_format' => false,
])
->getTimestamp() : REQUEST_TIME;
$metadata
->setCreatedTime($time);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ContentTranslationHandler:: |
protected | property | The current user. | |
ContentTranslationHandler:: |
protected | property | The date formatter service. | |
ContentTranslationHandler:: |
protected | property | Information about the entity type. | |
ContentTranslationHandler:: |
protected | property | The type of the entity being translated. | |
ContentTranslationHandler:: |
protected | property | The entity type manager. | |
ContentTranslationHandler:: |
protected | property | The array of installed field storage definitions for the entity type, keyed by field name. | |
ContentTranslationHandler:: |
protected | property | The language manager. | |
ContentTranslationHandler:: |
protected | property | The content translation manager. | |
ContentTranslationHandler:: |
protected | property | The messenger service. | |
ContentTranslationHandler:: |
protected | function | Adds a clue about the form element translatability. | |
ContentTranslationHandler:: |
protected | function | Checks the field storage definition for translatability support. | |
ContentTranslationHandler:: |
public static | function |
Instantiates a new instance of this entity handler. Overrides EntityHandlerInterface:: |
|
ContentTranslationHandler:: |
public | function |
Performs the needed alterations to the entity form. Overrides ContentTranslationHandlerInterface:: |
4 |
ContentTranslationHandler:: |
public | function | Form submission handler for ContentTranslationHandler::entityFormAlter(). | |
ContentTranslationHandler:: |
public | function | Form submission handler for ContentTranslationHandler::entityFormAlter(). | |
ContentTranslationHandler:: |
public | function |
Entity builder method. Overrides ContentTranslationHandler:: |
|
ContentTranslationHandler:: |
public | function | Process callback: determines which elements get clue in the form. | |
ContentTranslationHandler:: |
public | function | Form submission handler for ContentTranslationHandler::entityFormAlter(). | |
ContentTranslationHandler:: |
public | function | Form submission handler for ContentTranslationHandler::entityFormAlter(). | |
ContentTranslationHandler:: |
protected | function | Returns the title to be used for the entity form page. | 3 |
ContentTranslationHandler:: |
public | function | Form validation handler for ContentTranslationHandler::entityFormAlter(). | |
ContentTranslationHandler:: |
public static | function | Default value callback for the owner base field definition. | |
ContentTranslationHandler:: |
public | function |
Returns a set of field definitions to be used to store metadata items. Overrides ContentTranslationHandlerInterface:: |
|
ContentTranslationHandler:: |
public | function |
Retrieves the source language for the translation being created. Overrides ContentTranslationHandlerInterface:: |
|
ContentTranslationHandler:: |
public | function |
Checks if the user can perform the given operation on translations of the
wrapped entity. Overrides ContentTranslationHandlerInterface:: |
|
ContentTranslationHandler:: |
protected | function | Checks whether the entity type supports author natively. | |
ContentTranslationHandler:: |
protected | function | Checks whether the entity type supports modification time natively. | |
ContentTranslationHandler:: |
protected | function | Checks whether the entity type supports creation time natively. | 1 |
ContentTranslationHandler:: |
protected | function | Checks whether the entity type supports published status natively. | 1 |
ContentTranslationHandler:: |
public | function |
Marks translations as outdated. Overrides ContentTranslationHandlerInterface:: |
|
ContentTranslationHandler:: |
public | function | Initializes an instance of the content translation controller. | |
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 | |
EntityChangesDetectionTrait:: |
protected | function | Returns an array of field names to skip when checking for changes. | |
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. |