summaryrefslogtreecommitdiff
path: root/tpl/study/lib_sidebar.php
diff options
context:
space:
mode:
Diffstat (limited to 'tpl/study/lib_sidebar.php')
-rw-r--r--tpl/study/lib_sidebar.php18
1 files changed, 18 insertions, 0 deletions
diff --git a/tpl/study/lib_sidebar.php b/tpl/study/lib_sidebar.php
new file mode 100644
index 0000000..61bb11a
--- /dev/null
+++ b/tpl/study/lib_sidebar.php
@@ -0,0 +1,18 @@
+<?php
+
+if ($user['id'] != 0) {
+ $my_decks = array();
+ $d = sql("SELECT id, name FROM decks WHERE owner = " . $user['id']);
+ while ($dd = mysql_fetch_assoc($d)) $my_decks[] = $dd;
+
+ echo '</div><div class="contents-left">';
+ echo '<h1>Studying decks</h1><ul>';
+ //LIST
+ echo '<li><a class="tool_link" href="deck">[+] Show all decks</a></li></ul>';
+
+ echo '<h1>My decks</h1><ul>';
+ foreach($my_decks as $deck) {
+ echo '<li><a href="view-deck-' . $deck['id'] . '">' . $deck['name'] . '</a></li>';
+ }
+ echo '<li><a class="tool_link" href="new-deck">[+] Create deck</a></li></ul>';
+}