mirror of
https://github.com/wallabag/wallabag.git
synced 2024-12-12 02:36:27 +00:00
52 lines
698 B
PHP
52 lines
698 B
PHP
|
<?php
|
||
|
/**
|
||
|
* poche, a read it later open source system
|
||
|
*
|
||
|
* @category poche
|
||
|
* @author Nicolas Lœuillet <support@inthepoche.com>
|
||
|
* @copyright 2013
|
||
|
* @license http://www.wtfpl.net/ see COPYING file
|
||
|
*/
|
||
|
|
||
|
class Store {
|
||
|
function __construct() {
|
||
|
|
||
|
}
|
||
|
|
||
|
public function add() {
|
||
|
|
||
|
}
|
||
|
|
||
|
public function retrieveOneById($id) {
|
||
|
|
||
|
}
|
||
|
|
||
|
public function retrieveOneByURL($url) {
|
||
|
|
||
|
}
|
||
|
|
||
|
public function deleteById($id) {
|
||
|
|
||
|
}
|
||
|
|
||
|
public function favoriteById($id) {
|
||
|
|
||
|
}
|
||
|
|
||
|
public function archiveById($id) {
|
||
|
|
||
|
}
|
||
|
|
||
|
public function getEntriesByView($view) {
|
||
|
|
||
|
}
|
||
|
|
||
|
public function getLastId() {
|
||
|
|
||
|
}
|
||
|
|
||
|
public function updateContentById($id) {
|
||
|
|
||
|
}
|
||
|
}
|