default.ctp 273 B

1234567891011121314151617
  1. <?php
  2. echo $this->Rss->header();
  3. if (!isset($channel)) {
  4. $channel = [];
  5. }
  6. if (!isset($channel['title'])) {
  7. $channel['title'] = $this->fetch('title');
  8. }
  9. echo $this->Rss->document(
  10. $this->Rss->channel(
  11. [], $channel, $this->fetch('content')
  12. )
  13. );
  14. ?>