Example #1
0
 /**
  * {@inheritdoc}
  */
 protected function urlRouteParameters($rel)
 {
     $route_parameters = parent::urlRouteParameters($rel);
     if ($rel == 'revision-revert') {
         $route_parameters[$this->getEntityTypeId() . '_revision'] = $this->getRevisionId();
     } elseif ($rel == 'revision-delete') {
         $route_parameters[$this->getEntityTypeId() . '_revision'] = $this->getRevisionId();
     }
     return $route_parameters;
 }