You are here

public function Redirect::getSource in Redirect 8

Gets the source URL data.

Return value

array

File

src/Entity/Redirect.php, line 160

Class

Redirect
The redirect entity class.

Namespace

Drupal\redirect\Entity

Code

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