diff options
author | Nicolas LÅ“uillet <nicolas.loeuillet@gmail.com> | 2013-12-06 13:15:06 +0100 |
---|---|---|
committer | Nicolas LÅ“uillet <nicolas.loeuillet@gmail.com> | 2013-12-06 13:15:06 +0100 |
commit | 2e2ebe5ec767dcbee90394d12b03298592c87805 (patch) | |
tree | c62599a66288c6a77eeeac3bc968e3024100386e /inc/poche/Poche.class.php | |
parent | 68e20616663e048d47297ff251f64081b1d1fe3a (diff) | |
download | wallabag-2e2ebe5ec767dcbee90394d12b03298592c87805.tar.gz wallabag-2e2ebe5ec767dcbee90394d12b03298592c87805.tar.zst wallabag-2e2ebe5ec767dcbee90394d12b03298592c87805.zip |
[add] create tags page
Diffstat (limited to 'inc/poche/Poche.class.php')
-rw-r--r-- | inc/poche/Poche.class.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/inc/poche/Poche.class.php b/inc/poche/Poche.class.php index c9fb6382..802ec542 100644 --- a/inc/poche/Poche.class.php +++ b/inc/poche/Poche.class.php | |||
@@ -430,6 +430,12 @@ class Poche | |||
430 | ); | 430 | ); |
431 | Tools::logm('config view'); | 431 | Tools::logm('config view'); |
432 | break; | 432 | break; |
433 | case 'tags': | ||
434 | $tags = $this->store->retrieveAllTags(); | ||
435 | $tpl_vars = array( | ||
436 | 'tags' => $tags, | ||
437 | ); | ||
438 | break; | ||
433 | case 'view': | 439 | case 'view': |
434 | $entry = $this->store->retrieveOneById($id, $this->user->getId()); | 440 | $entry = $this->store->retrieveOneById($id, $this->user->getId()); |
435 | if ($entry != NULL) { | 441 | if ($entry != NULL) { |