統計
| ブランチ: | リビジョン:

pictcode_admin / app / View / Layouts / rss / default.ctp @ 5ad38a95

履歴 | 表示 | アノテート | ダウンロード (241 Bytes)

1
<?php
2
if (!isset($channel)):
3
	$channel = array();
4
endif;
5
if (!isset($channel['title'])):
6
	$channel['title'] = $this->fetch('title');
7
endif;
8

    
9
echo $this->Rss->document(
10
	$this->Rss->channel(
11
		array(), $channel, $this->fetch('content')
12
	)
13
);