aboutsummaryrefslogtreecommitdiffhomepage
path: root/application/bookmark/BookmarkIO.php
Commit message (Collapse)AuthorAgeFilesLines
* Fix: soft fail if the mutex is not workingArthurHoaro2020-11-241-2/+20
| | | | | | And display the error in server admin page Fixes #1650
* Apply PHP Code Beautifier on source code for linter automatic fixesArthurHoaro2020-11-091-2/+2
|
* Add strict types for bookmarks managementArthurHoaro2020-10-131-2/+4
| | | | | | | | Parameters typing and using strict types overall increase the codebase quality by enforcing the a given parameter will have the expected type. It also removes the need to unnecessary unit tests checking methods behavior with invalid input.
* Add mutex on datastore I/O operationsArthurHoaro2020-10-131-8/+27
| | | | | | To make sure that there is no concurrent operation on the datastore file. Fixes #1132
* Remove anonymous permission and initialize bookmarks on loginArthurHoaro2020-08-011-3/+5
|
* Migrate cache purge function to a proper classArthurHoaro2020-07-231-2/+0
| | | | | | And update dependencies and tests. Note that SESSION['tags'] has been removed a log ago
* Introduce Bookmark object and Service layer to retrieve themArthurHoaro2020-01-171-0/+108
See https://github.com/shaarli/Shaarli/issues/1307 for details