aboutsummaryrefslogtreecommitdiffhomepage
path: root/index.php
diff options
context:
space:
mode:
authorNicolas Lœuillet <nicolas@loeuillet.org>2014-07-12 16:39:31 +0200
committerNicolas Lœuillet <nicolas@loeuillet.org>2014-07-12 16:39:31 +0200
commit26b77483ee7545c0e4f8eeb205a5743bf3589adb (patch)
tree4a1da42493bcf2f16ef6373d7955dad5ff5eda45 /index.php
parentb3cda72e93fff3a4c3476e9e7e78ef2b2a3f02b9 (diff)
downloadwallabag-26b77483ee7545c0e4f8eeb205a5743bf3589adb.tar.gz
wallabag-26b77483ee7545c0e4f8eeb205a5743bf3589adb.tar.zst
wallabag-26b77483ee7545c0e4f8eeb205a5743bf3589adb.zip
remove PicoFarad
I’ll implement it an other day.
Diffstat (limited to 'index.php')
-rwxr-xr-xindex.php57
1 files changed, 5 insertions, 52 deletions
diff --git a/index.php b/index.php
index 6f190518..e199956c 100755
--- a/index.php
+++ b/index.php
@@ -12,56 +12,9 @@ define ('POCHE', '1.8.0');
12require 'check_setup.php'; 12require 'check_setup.php';
13require_once 'inc/poche/global.inc.php'; 13require_once 'inc/poche/global.inc.php';
14 14
15// Start session
16Session::$sessionName = 'wallabag';
17Session::init();
15 18
16use PicoFarad\Router; 19// Let's rock !
17use PicoFarad\Response; 20$wallabag = new Poche();
18use PicoFarad\Request;
19use PicoFarad\Session;
20
21// Called before each action
22Router\before(function($action) {
23
24 // Open a session only for the specified directory
25 Session\open(dirname($_SERVER['PHP_SELF']));
26
27 // HTTP secure headers
28 Response\csp();
29 Response\xframe();
30 Response\xss();
31 Response\nosniff();
32});
33
34// Show help
35Router\get_action('unread', function() use ($wallabag) {
36 $view = 'home';
37 $id = 0;
38
39 $tpl_vars = array(
40 'referer' => $wallabag->routing->referer,
41 'view' => $wallabag->routing->view,
42 'poche_url' => Tools::getPocheUrl(),
43 'title' => _('wallabag, a read it later open source system'),
44 'token' => \Session::getToken(),
45 'theme' => $wallabag->tpl->getTheme(),
46 'entries' => '',
47 'page_links' => '',
48 'nb_results' => '',
49 'listmode' => (isset($_COOKIE['listmode']) ? true : false),
50 );
51
52 $count = $wallabag->store->getEntriesByViewCount($view, $wallabag->user->getId(), $id);
53
54 if ($count > 0) {
55 $wallabag->pagination->set_total($count);
56 $page_links = str_replace(array('previous', 'next'), array(_('previous'), _('next')),
57 $wallabag->pagination->page_links('?view=' . $view . '&sort=' . $_SESSION['sort'] . (($id)?'&id='.$id:'') . '&' ));
58 $tpl_vars['entries'] = $wallabag->store->getEntriesByView($view, $wallabag->user->getId(), $wallabag->pagination->get_limit(), $id);
59 $tpl_vars['page_links'] = $page_links;
60 $tpl_vars['nb_results'] = $count;
61 }
62
63 $wallabag->routing->render('home.twig', $tpl_vars);
64
65 Tools::logm('display ' . $view . ' view');
66
67});