Feed::setDescription

public Feed::setDescription($description)

Sets the description of the feed.

Parameters

string $description: The description of the feed.

Return value

\Drupal\aggregator\FeedInterface The class instance that this method is called on.

Overrides FeedInterface::setDescription

File

core/modules/aggregator/src/Entity/Feed.php, line 352

Class

Feed
Defines the aggregator feed entity class.

Namespace

Drupal\aggregator\Entity

Code

public function setDescription($description) {
  $this->set('description', $description);
  return $this;
}
doc_Drupal
2016-10-29 09:09:57
Comments
Leave a Comment

Please login to continue.