2013-04-12 12:25:58 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* poche, a read it later open source system
|
|
|
|
*
|
|
|
|
* @category poche
|
|
|
|
* @author Nicolas Lœuillet <nicolas@loeuillet.org>
|
|
|
|
* @copyright 2013
|
|
|
|
* @license http://www.wtfpl.net/ see COPYING file
|
|
|
|
*/
|
|
|
|
|
|
|
|
include dirname(__FILE__).'/inc/config.php';
|
|
|
|
|
|
|
|
if(isset($_GET['id']) && $_GET['id'] != '') {
|
|
|
|
|
|
|
|
$sql = "SELECT * FROM entries WHERE id=?";
|
|
|
|
$params = array(intval($_GET['id']));
|
|
|
|
|
|
|
|
# view article query
|
|
|
|
try
|
|
|
|
{
|
|
|
|
$query = $db->getHandle()->prepare($sql);
|
|
|
|
$query->execute($params);
|
|
|
|
$entry = $query->fetchAll();
|
|
|
|
}
|
|
|
|
catch (Exception $e)
|
|
|
|
{
|
|
|
|
die('query error : '.$e->getMessage());
|
|
|
|
}
|
|
|
|
|
2013-04-12 13:13:21 +02:00
|
|
|
if ($entry != NULL) {
|
2013-04-15 09:38:41 +02:00
|
|
|
$tpl->assign('id', $entry[0]['id']);
|
|
|
|
$tpl->assign('url', $entry[0]['url']);
|
|
|
|
$tpl->assign('title', $entry[0]['title']);
|
|
|
|
$tpl->assign('content', $entry[0]['content']);
|
|
|
|
$tpl->assign('is_fav', $entry[0]['is_fav']);
|
|
|
|
$tpl->assign('is_read', $entry[0]['is_read']);
|
|
|
|
$tpl->assign('load_all_js', 0);
|
|
|
|
$tpl->draw('view');
|
2013-04-12 13:13:21 +02:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
die('error in view call');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
die('error in view call');
|
2013-04-12 12:25:58 +02:00
|
|
|
}
|