cakephp2-php8/lib/Cake/Console/Templates/skel/View/Layouts/rss/default.ctp

17 lines
238 B
Text
Raw Normal View History

<?php
echo $rss->header();
if (!isset($channel)) {
$channel = array();
}
if (!isset($channel['title'])) {
$channel['title'] = $title_for_layout;
}
echo $rss->document(
$rss->channel(
array(), $channel, $content_for_layout
)
);
?>