format_rss_item
- Versions
- 4.6 – 7
format_rss_item($title, $link, $description, $args = array())
Format a single RSS item.
Arbitrary elements may be added using the $args associative array.
Related topics
Code
includes/common.inc, line 2028
<?php
function format_rss_item($title, $link, $description, $args = array()) {
$output = "<item>\n";
$output .= ' <title>' . check_plain($title) . "</title>\n";
$output .= ' <link>' . check_url($link) . "</link>\n";
$output .= ' <description>' . check_plain($description) . "</description>\n";
$output .= format_xml_elements($args);
$output .= "</item>\n";
return $output;
}
?>Login or register to post comments 