summaryrefslogtreecommitdiff
path: root/fai_gestion/src/Template/Layout/rss/default.ctp
blob: 8269be2128c1a1b8b9831d3b5b08f0fb1b5f1b33 (plain)
1
2
3
4
5
6
7
8
9
10
11
<?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'))
);