function Rss::get_description

Get RSS feed description.

Return value

string The string containing the description with the tokens replaced.

File

drupal/core/modules/views/lib/Drupal/views/Plugin/views/style/Rss.php, line 101
Definition of Drupal\views\Plugin\views\style\Rss.

Class

Rss
Default style plugin to render an RSS feed.

Namespace

Drupal\views\Plugin\views\style

Code

function get_description() {
  $description = $this->options['description'];

  // Allow substitutions from the first row.
  $description = $this
    ->tokenize_value($description, 0);
  return $description;
}