]> git.immae.eu Git - github/wallabag/wallabag.git/blob - view.php
Merge branch 'master' of github.com:inthepoche/poche
[github/wallabag/wallabag.git] / view.php
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
11 include dirname(__FILE__).'/inc/config.php';
12
13 $id = (isset ($_GET['id'])) ? htmlspecialchars($_GET['id']) : '';
14
15 if(!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 }
33 else {
34 logm('error in view call : id is empty');
35 }