12 lines
237 B
PHP
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'))
|
|
);
|