Mercurial > hg > isophonics-drupal-site
view core/lib/Drupal/Core/Entity/TranslatableInterface.php @ 17:129ea1e6d783
Update, including to Drupal core 8.6.10
author | Chris Cannam |
---|---|
date | Thu, 28 Feb 2019 13:21:36 +0000 |
parents | 1fec387a4317 |
children | af1871eacc83 |
line wrap: on
line source
<?php namespace Drupal\Core\Entity; use Drupal\Core\TypedData\TranslatableInterface as TranslatableDataInterface; /** * Provides methods for an entity to support translation. */ interface TranslatableInterface extends TranslatableDataInterface { /** * Determines if the current translation of the entity has unsaved changes. * * @return bool * TRUE if the current translation of the entity has changes. */ public function hasTranslationChanges(); }