default.ctp 232 B

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