You are here

function views_rss_core_preprocess_channel_link in Views RSS 6.2

Same name and namespace in other branches
  1. 8.3 modules/views_rss_core/views_rss_core.inc \views_rss_core_preprocess_channel_link()
  2. 8.2 modules/views_rss_core/views_rss_core.inc \views_rss_core_preprocess_channel_link()
  3. 7.2 modules/views_rss_core/views_rss_core.inc \views_rss_core_preprocess_channel_link()

Preprocess function for channel <link> element.

1 call to views_rss_core_preprocess_channel_link()
views_rss_core_preprocess_channel_image in modules/views_rss_core/views_rss_core.inc
Preprocess function for channel <image> element.
1 string reference to 'views_rss_core_preprocess_channel_link'
views_rss_core_views_rss_channel_elements in modules/views_rss_core/views_rss_core.module
Implementation of hook_views_rss_channel_elements().

File

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

Code

function views_rss_core_preprocess_channel_link(&$variables) {
  $variables['value'] = url('<front>', array(
    'absolute' => TRUE,
  ));
}