aboutsummaryrefslogtreecommitdiffhomepage
path: root/inc/store/store.class.php
diff options
context:
space:
mode:
authorNicolas Lœuillet <nicolas@loeuillet.org>2013-04-21 10:53:22 -0700
committerNicolas Lœuillet <nicolas@loeuillet.org>2013-04-21 10:53:22 -0700
commit37c6ed4e7a75238504a28d6be5fbaad475689526 (patch)
tree69bfdf8ddbc09467be830274f434190b42979aa1 /inc/store/store.class.php
parentff4d8c8c1efca0759330906419cb5f36de86d156 (diff)
parentf0070a15e4725255dad967bde76155a39d189631 (diff)
downloadwallabag-37c6ed4e7a75238504a28d6be5fbaad475689526.tar.gz
wallabag-37c6ed4e7a75238504a28d6be5fbaad475689526.tar.zst
wallabag-37c6ed4e7a75238504a28d6be5fbaad475689526.zip
Merge pull request #67 from inthepoche/dev
tag 0.2
Diffstat (limited to 'inc/store/store.class.php')
-rw-r--r--inc/store/store.class.php55
1 files changed, 55 insertions, 0 deletions
diff --git a/inc/store/store.class.php b/inc/store/store.class.php
new file mode 100644
index 00000000..360ff7c2
--- /dev/null
+++ b/inc/store/store.class.php
@@ -0,0 +1,55 @@
1<?php
2/**
3 * poche, a read it later open source system
4 *
5 * @category poche
6 * @author Nicolas Lœuillet <support@inthepoche.com>
7 * @copyright 2013
8 * @license http://www.wtfpl.net/ see COPYING file
9 */
10
11class Store {
12 function __construct() {
13
14 }
15
16 public function add() {
17
18 }
19
20 public function retrieveAll() {
21
22 }
23
24 public function retrieveOneById($id) {
25
26 }
27
28 public function retrieveOneByURL($url) {
29
30 }
31
32 public function deleteById($id) {
33
34 }
35
36 public function favoriteById($id) {
37
38 }
39
40 public function archiveById($id) {
41
42 }
43
44 public function getEntriesByView($view) {
45
46 }
47
48 public function getLastId() {
49
50 }
51
52 public function updateContentById($id) {
53
54 }
55}