Remove dependency on PicoFeed
This commit is contained in:
23
app/Template/feed/project.php
Normal file
23
app/Template/feed/project.php
Normal file
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<feed xmlns="http://www.w3.org/2005/Atom">
|
||||
<title><?= e("%s's activity", $project['name']) ?></title>
|
||||
<updated><?= date(DATE_ATOM) ?></updated>
|
||||
<link rel="alternate" type="text/html" href="<?= $this->url->base() ?>"/>
|
||||
<link rel="self" type="application/atom+xml" href="<?= $this->url->href('FeedController', 'project', ['token' => $project['token']], false, '', true) ?>"/>
|
||||
<id><?= $this->url->href('FeedController', 'project', ['token' => $project['token']], false, '', true) ?></id>
|
||||
|
||||
<?php foreach ($events as $event): ?>
|
||||
<entry>
|
||||
<id><?= $this->url->href('TaskViewController', 'show', ['task_id' => $event['task_id']], false, 'event-'.$event['id'], true) ?></id>
|
||||
<link rel="alternate" type="text/html" href="<?= $this->url->href('TaskViewController', 'show', ['task_id' => $event['task_id']], false, 'event-'.$event['id'], true) ?>"/>
|
||||
<updated><?= date(DATE_ATOM, $event['date_creation']) ?></updated>
|
||||
<published><?= date(DATE_ATOM, $event['date_creation']) ?></published>
|
||||
<author>
|
||||
<name><?= $event['author'] ?></name>
|
||||
</author>
|
||||
<title><?= $event['event_title'] ?></title>
|
||||
<content type="html"><![CDATA[<?= $event['event_content'] ?>]]></content>
|
||||
</entry>
|
||||
<?php endforeach ?>
|
||||
|
||||
</feed>
|
||||
Reference in New Issue
Block a user