]> git.immae.eu Git - github/wallabag/wallabag.git/blame - inc/store/store.class.php
Merge branch 'dev'
[github/wallabag/wallabag.git] / inc / store / store.class.php
CommitLineData
14890de3 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
aa8c9f2a
NL
16 public function getLogin() {
17
18 }
19
20 public function getPassword() {
21
22 }
23
14890de3 24 public function add() {
25
26 }
27
44e77bfa 28 public function retrieveAll() {
29
30 }
31
14890de3 32 public function retrieveOneById($id) {
33
34 }
35
36 public function retrieveOneByURL($url) {
37
38 }
39
40 public function deleteById($id) {
41
42 }
43
44 public function favoriteById($id) {
45
46 }
47
48 public function archiveById($id) {
49
50 }
51
52 public function getEntriesByView($view) {
53
54 }
55
56 public function getLastId() {
57
58 }
59
60 public function updateContentById($id) {
61
62 }
63}