Files
budget/src/Template/Layout/rss/default.ctp
2018-04-02 08:23:14 +02:00

12 lines
237 B
PHP

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