Get the Entity ID.
Drupal\Core\Entity\EntityNG $entity: Entity to get URI for.
string Return the entity URI.
protected function getEntityId($entity) {
global $base_url;
$uriInfo = $entity
->uri();
return $base_url . '/' . $uriInfo['path'];
}