Subversion Repositories eFlore/Applications.del

Rev

Rev 1317 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1317 Rev 1661
Line 3... Line 3...
3
	<channel>
3
	<channel>
4
		<title><?=$titre?></title>
4
		<title><?=$titre?></title>
5
		<link><?=$lien_service?></link>
5
		<link><?=$lien_service?></link>
6
		<atom:link href="<?=$lien_service?>" rel="self" type="application/rss+xml" />
6
		<atom:link href="<?=$lien_service?>" rel="self" type="application/rss+xml" />
7
		<description><?=$description?></description>
7
		<description><?=$description?></description>
8
		
8
 
9
		<?php if (isset($items)) : ?>
9
		<?php if (isset($items)) : ?>
10
		<?php foreach ($items as $item) : ?>
10
			<?php foreach ($items as $item) : ?>
11
		<item>
11
				<item>
12
		  <guid><?=$item['guid']?></guid>
12
					<guid><?=$item['guid']?></guid>
13
		  <title><?=$item['titre']?></title>
13
					<title><?=$item['titre']?></title>
14
		  <? if (isset($item['lien'])) : ?>
14
					<? if (isset($item['lien'])) : ?>
15
		  <link><?=$item['lien']?></link>
15
						<link><?=$item['lien']?></link>
16
		  <? endif; ?>
16
					<? endif; ?>
17
		  <description><?=$item['description_encodee']?></description>
17
					<description><?=$item['description_encodee']?></description>
18
		  <category><?= $item['categorie'] ?></category>
18
					<category><?= $item['categorie'] ?></category>
19
		  <author><?=$item['modifier_par']?></author>
19
					<author><?=$item['modifier_par']?></author>
20
		  <pubDate><?=$item['date_maj_RSS']?></pubDate>
20
					<pubDate><?=$item['date_maj_RSS']?></pubDate>
21
		</item>
21
				</item>
22
		<?php endforeach; ?>
22
			<?php endforeach; ?>
23
		<?php endif; ?>
23
		<?php endif; ?>
24
		
-
 
25
	</channel>
24
	</channel>
26
</rss>
25
</rss>
27
26