You are here

public function Redirect::getRedirect in Redirect 8

Gets the redirect URL data.

Return value

array The redirect URL data.

File

src/Entity/Redirect.php, line 193

Class

Redirect
The redirect entity class.

Namespace

Drupal\redirect\Entity

Code

public function getRedirect() {
  return $this
    ->get('redirect_redirect')
    ->get(0)
    ->getValue();
}