You are here

public function Item::getAuthor in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/aggregator/src/Entity/Item.php \Drupal\aggregator\Entity\Item::getAuthor()

Returns the author of the feed item.

Return value

string The author of the feed item.

Overrides ItemInterface::getAuthor

File

core/modules/aggregator/src/Entity/Item.php, line 166
Contains \Drupal\aggregator\Entity\Item.

Class

Item
Defines the aggregator item entity class.

Namespace

Drupal\aggregator\Entity

Code

public function getAuthor() {
  return $this
    ->get('author')->value;
}