summaryrefslogtreecommitdiff
path: root/poc/poc02-compiling-cake/src/vendor/cakephp-2.2.1-0-gcc44130/lib/Cake/Test/test_app/View/Layouts/rss/default.ctp
blob: 94067f2bfbcbd3aae49baf9ae2e32a485b05e104 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php
echo $rss->header();

if (!isset($channel)) {
	$channel = array();
}
if (!isset($channel['title'])) {
	$channel['title'] = $title_for_layout;
}

echo $rss->document(
	$rss->channel(
		array(), $channel, $content_for_layout
	)
);

?>