public Feed::setUrl($url)
Sets the url to the feed.
Parameters
string $url: A string containing the url of the feed.
Return value
\Drupal\aggregator\FeedInterface The class instance that this method is called on.
Overrides FeedInterface::setUrl
File
- core/modules/aggregator/src/Entity/Feed.php, line 312
Class
- Feed
- Defines the aggregator feed entity class.
Namespace
Drupal\aggregator\Entity
Code
1 2 3 4 | public function setUrl( $url ) { $this ->set( 'url' , $url ); return $this ; } |
Please login to continue.