cakephp2-php8/app/View/Layouts/rss/default.ctp
2012-04-18 22:23:18 -04:00

14 lines
232 B
PHP

<?php
if (!isset($channel)) {
$channel = array();
}
if (!isset($channel['title'])) {
$channel['title'] = $title_for_layout;
}
echo $this->Rss->document(
$this->Rss->channel(
array(), $channel, $this->fetch('content')
)
);
?>