cakephp2-php8/app/View/Layouts/rss/default.ctp
2014-09-18 13:43:50 +02:00

14 lines
244 B
PHP

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