cakephp2-php8/lib/Cake/Console/Templates/skel/View/Layouts/rss/default.ctp
2011-05-30 23:02:39 -04:00

17 lines
No EOL
238 B
PHP

<?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
)
);
?>