diff options
author | Frédéric Guillot <fred@kanboard.net> | 2018-02-02 15:39:47 -0800 |
---|---|---|
committer | Frédéric Guillot <fred@kanboard.net> | 2018-02-02 15:39:47 -0800 |
commit | bab2fb3899cc243e2f67ccf787f3657b250f6e61 (patch) | |
tree | 07ddb755330b320fbd2e2803fdb978cfff3bd452 /app/Template/feed/project.php | |
parent | 5c4d06d26b808ea50d08f83ae02ac82373fd2208 (diff) |
Remove dependency on PicoFeed
Diffstat (limited to 'app/Template/feed/project.php')
-rw-r--r-- | app/Template/feed/project.php | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/app/Template/feed/project.php b/app/Template/feed/project.php new file mode 100644 index 00000000..5bf4264e --- /dev/null +++ b/app/Template/feed/project.php @@ -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>
\ No newline at end of file |