aboutsummaryrefslogtreecommitdiffhomepage
path: root/inc/store/store.class.php
diff options
context:
space:
mode:
Diffstat (limited to 'inc/store/store.class.php')
-rw-r--r--inc/store/store.class.php55
1 files changed, 0 insertions, 55 deletions
diff --git a/inc/store/store.class.php b/inc/store/store.class.php
deleted file mode 100644
index d6e63014..00000000
--- a/inc/store/store.class.php
+++ /dev/null
@@ -1,55 +0,0 @@
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 login() {
17
18 }
19
20 public function add() {
21
22 }
23
24 public function retrieveAll() {
25
26 }
27
28 public function retrieveOneById($id) {
29
30 }
31
32 public function retrieveOneByURL($url) {
33
34 }
35
36 public function deleteById($id) {
37
38 }
39
40 public function favoriteById($id) {
41
42 }
43
44 public function archiveById($id) {
45
46 }
47
48 public function getEntriesByView($view) {
49
50 }
51
52 public function getLastId() {
53
54 }
55}