[add] create tags page

This commit is contained in:
Nicolas Lœuillet
2013-12-06 13:15:06 +01:00
parent 68e2061666
commit 2e2ebe5ec7
5 changed files with 29 additions and 5 deletions

View File

@ -430,6 +430,12 @@ class Poche
);
Tools::logm('config view');
break;
case 'tags':
$tags = $this->store->retrieveAllTags();
$tpl_vars = array(
'tags' => $tags,
);
break;
case 'view':
$entry = $this->store->retrieveOneById($id, $this->user->getId());
if ($entry != NULL) {