RevisionableContentEntityBase.php in Entity API 8
File
src/Revision/RevisionableContentEntityBase.php
View source
<?php
namespace Drupal\entity\Revision;
use Drupal\Core\Entity\RevisionableContentEntityBase as BaseRevisionableContentEntityBase;
abstract class RevisionableContentEntityBase extends BaseRevisionableContentEntityBase {
protected function urlRouteParameters($rel) {
$uri_route_parameters = parent::urlRouteParameters($rel);
if (strpos($this
->getEntityType()
->getLinkTemplate($rel), $this
->getEntityTypeId() . '_revision') !== FALSE) {
$uri_route_parameters[$this
->getEntityTypeId() . '_revision'] = $this
->getRevisionId();
}
return $uri_route_parameters;
}
}