public function ResetStatusEntityConfirmation::getDescription in CMS Content Sync 8
Same name and namespace in other branches
- 2.1.x src/Form/ResetStatusEntityConfirmation.php \Drupal\cms_content_sync\Form\ResetStatusEntityConfirmation::getDescription()
- 2.0.x src/Form/ResetStatusEntityConfirmation.php \Drupal\cms_content_sync\Form\ResetStatusEntityConfirmation::getDescription()
Returns additional text to display as a description.
Return value
\Drupal\Core\StringTranslation\TranslatableMarkup The form description.
Overrides ConfirmFormBase::getDescription
File
- src/
Form/ ResetStatusEntityConfirmation.php, line 94
Class
- ResetStatusEntityConfirmation
- Provides the confirmation form for the pool reset entity status action.
Namespace
Drupal\cms_content_sync\FormCode
public function getDescription() {
return $this
->t('By resetting the status of all entities, the date of the last pull
and the date of the last push will be reset. The dates will no longer be displayed until
the content is pulled or pushed again and all entities will be pushed / pulled again at
the next synchronization regardless of whether they have changed or not.');
}