]> git.immae.eu Git - github/wallabag/wallabag.git/blame_incremental - view.php
#4 - ajout système de connexion (login poche mot de passe poche pour l'instant)
[github/wallabag/wallabag.git] / view.php
... / ...
CommitLineData
1<?php
2/**
3 * poche, a read it later open source system
4 *
5 * @category poche
6 * @author Nicolas Lœuillet <nicolas@loeuillet.org>
7 * @copyright 2013
8 * @license http://www.wtfpl.net/ see COPYING file
9 */
10
11include dirname(__FILE__).'/inc/config.php';
12
13$id = (isset ($_GET['id'])) ? htmlspecialchars($_GET['id']) : '';
14
15if(!empty($id)) {
16
17 $entry = get_article($id);
18
19 if ($entry != NULL) {
20 $tpl->assign('id', $entry[0]['id']);
21 $tpl->assign('url', $entry[0]['url']);
22 $tpl->assign('title', $entry[0]['title']);
23 $tpl->assign('content', $entry[0]['content']);
24 $tpl->assign('is_fav', $entry[0]['is_fav']);
25 $tpl->assign('is_read', $entry[0]['is_read']);
26 $tpl->assign('load_all_js', 0);
27 $tpl->draw('view');
28 }
29 else {
30 logm('error in view call : entry is NULL');
31 }
32}
33else {
34 logm('error in view call : id is empty');
35}