aboutsummaryrefslogtreecommitdiffhomepage
path: root/application/front/controller/admin/ShaarePublishController.php
Commit message (Collapse)AuthorAgeFilesLines
* Fix: synchronous metadata retrieval is failing in strict modeArthurHoaro2020-12-161-1/+1
| | | | | | Metadata can now only be string or null. Fixes #1653
* Apply PHP Code Beautifier on source code for linter automatic fixesArthurHoaro2020-11-091-5/+8
|
* Feature: support any tag separatorArthurHoaro2020-11-051-2/+10
| | | | | | | | So it allows to have multiple words tags. Breaking change: commas ',' are no longer a default separator. Fixes #594
* Remove unnecessary escape of refererArthurHoaro2020-10-281-1/+1
| | | | Fixes #1611
* Bulk creation: ignore blank linesArthurHoaro2020-10-271-0/+3
|
* Bulk creation: improve performances using memoizationArthurHoaro2020-10-271-9/+43
| | | | Reduced additional processing time per links from ~40ms to ~5ms
* Bulk creation: fix private status based on the first formArthurHoaro2020-10-271-1/+5
|
* Feature: bulk creation of bookmarksArthurHoaro2020-10-271-0/+222
This changes creates a new form in addlink page allowing to create multiple bookmarks at once more easily. It focuses on re-using as much existing code and template component as possible. These changes includes: - a new form in addlink (hidden behind a button by default), containing a text area for URL, and tags/private status to apply to created links - this form displays a new template called editlink.batch, itself including editlink template multiple times - User interation in this new templates are handle by a new JS script (shaare-batch.js) making AJAX requests, and therefore does not need page reloading - ManageShaareController has been split into 3 distinct controllers: + ShaareAdd: displays addlink template + ShaareManage: various operation applied on existing shaares (change visibility, pin, deletion, etc.) + ShaarePublish: handles creation/edit forms and saving Shaare's form - Updated translations Fixes #137