diff options
author | Nicolas LÅ“uillet <nicolas.loeuillet@gmail.com> | 2014-02-12 21:52:01 +0100 |
---|---|---|
committer | Nicolas LÅ“uillet <nicolas.loeuillet@gmail.com> | 2014-02-12 21:52:01 +0100 |
commit | f14807de06929486de6e2b64cd30e5c53978d8c0 (patch) | |
tree | b42557587671806e22666336f1a346914ae43aac /inc/poche/Database.class.php | |
parent | ed2853564e3db719abf5378b31fe5067dad513c4 (diff) | |
download | wallabag-f14807de06929486de6e2b64cd30e5c53978d8c0.tar.gz wallabag-f14807de06929486de6e2b64cd30e5c53978d8c0.tar.zst wallabag-f14807de06929486de6e2b64cd30e5c53978d8c0.zip |
[add] mark all as read #385
Diffstat (limited to 'inc/poche/Database.class.php')
-rw-r--r-- | inc/poche/Database.class.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/inc/poche/Database.class.php b/inc/poche/Database.class.php index 0457af69..9f553fa1 100644 --- a/inc/poche/Database.class.php +++ b/inc/poche/Database.class.php | |||
@@ -318,6 +318,12 @@ class Database { | |||
318 | $query = $this->executeQuery($sql_action, $params_action); | 318 | $query = $this->executeQuery($sql_action, $params_action); |
319 | } | 319 | } |
320 | 320 | ||
321 | public function archiveAll($user_id) { | ||
322 | $sql_action = "UPDATE entries SET is_read=? WHERE user_id=? AND is_read=?"; | ||
323 | $params_action = array($user_id, 1, 0); | ||
324 | $query = $this->executeQuery($sql_action, $params_action); | ||
325 | } | ||
326 | |||
321 | public function getLastId($column = '') { | 327 | public function getLastId($column = '') { |
322 | return $this->getHandle()->lastInsertId($column); | 328 | return $this->getHandle()->lastInsertId($column); |
323 | } | 329 | } |