You are here

function views_rss_core_preprocess_channel_last_build_date in Views RSS 8.2

Preprocess function for channel <lastBuildDate> element.

1 string reference to 'views_rss_core_preprocess_channel_last_build_date'
views_rss_core_views_rss_channel_elements in modules/views_rss_core/views_rss_core.module
Implements hook_views_rss_item_elements().

File

modules/views_rss_core/views_rss_core.inc, line 160
Preprocess functions for Views RSS: Core Elements module.

Code

function views_rss_core_preprocess_channel_last_build_date(&$variables) {
  $variables['elements'][0]['value'] = date('r');
}