aboutsummaryrefslogtreecommitdiffhomepage
path: root/plugins/demo_plugin
Commit message (Collapse)AuthorAgeFilesLines
* New plugin hook: ability to add custom filters to Shaarli search engineArthurHoaro2021-02-041-0/+33
| | | | | | | A new plugin hook has been added: hook_test_filter_search_entry This hook allows to filter out bookmark with custom plugin code when a search is performed. Related to #143
* Plugin system: allow plugins to provide custom routesArthurHoaro2020-11-152-1/+42
| | | | | | | | | | - each route will be prefixed by `/plugin/<plugin_name>` - add a new template for plugins rendering - add a live example in the demo_plugin Check out the "Plugin System" documentation for more detail. Related to #143
* Apply PHP Code Beautifier on source code for linter automatic fixesArthurHoaro2020-11-091-22/+23
|
* New basePath: fix officiel plugin paths and vintage templateArthurHoaro2020-07-261-1/+1
|
* Process main page (linklist) through Slim controllerArthurHoaro2020-07-231-4/+4
| | | | | Including a bunch of improvements on the container, and helper used across new controllers.
* Fix some typos and remove a few unnecessary comments in demo pluginPaul van den Burg2019-10-261-14/+9
|
* Add the new hook save_plugin_parameters to the demo pluginArthurHoaro2019-07-202-0/+22
|
* namespacing: \Shaarli\Plugin\PluginManagerVirtualTam2019-01-121-0/+1
| | | | Signed-off-by: VirtualTam <virtualtam@flibidi.net>
* namespacing: \Shaarli\RouterVirtualTam2019-01-121-0/+1
| | | | Signed-off-by: VirtualTam <virtualtam@flibidi.net>
* lint: fix line-length warningsVirtualTam2018-12-021-4/+4
| | | | Signed-off-by: VirtualTam <virtualtam@flibidi.net>
* lint: apply phpcbf to plugins/VirtualTam2018-12-021-3/+1
| | | | Signed-off-by: VirtualTam <virtualtam@flibidi.net>
* Executes daily hooks before creating columns.kalvn2018-02-011-8/+4
|
* Translations : Working demo example of translation extensionArthurHoaro2017-10-223-1/+48
|
* Shaarli's translationArthurHoaro2017-10-221-0/+9
| | | | | | | | | * translation system and unit tests * Translations everywhere Dont use translation merge It is not available with PHP builtin gettext, so it would have lead to inconsistency.
* Improve theme dependent plugin placeholders:ArthurHoaro2016-12-012-11/+75
| | | | | | | | | - buttons_toolbar: now expect links represented by an array instead of HTML content - fields_toolbar: now expect a form represented by an array instead of HTML content - action_plugin: now expect links represented by an array instead of HTML content Default templates updated accordingly mprove theme dependent plugin placeholders:
* New init function for plugins, supports errors reportingArthurHoaro2016-10-141-0/+17
| | | | | | | | All plugins can optionally add an init function named `pluginname_init()` which is called when the plugin is loaded. This function is aware of the config, and can return initialization errors, which are displayed in the header template. Note that the previous error system hack no longer work.
* Plugin: add render_feed hook and call it while generating ATOM and RSS feed.ArthurHoaro2016-03-181-1/+26
| | | | Create an example of the new hook in the demo plugin.
* Fixes #378 - Plugin administration UI.ArthurHoaro2016-01-311-0/+1
|
* Merge pull request #408 from ArthurHoaro/gototopVirtualTam2015-12-092-0/+12
|\ | | | | Adding a new placeholder in render_footer hook.
| * Adding a new placeholder in render_footer hook.ArthurHoaro2015-12-082-0/+12
| | | | | | | | Allow free elements at the end of the page.
* | Fixes #403: build the daily page through renderPage()ArthurHoaro2015-12-081-0/+2
|/ | | | | * new entry in the Router for daily page. * add an always displayed button in demo_plugin
* cleanup: remove the executable bit from source scriptsVirtualTam2015-11-114-0/+0
| | | | Signed-off-by: VirtualTam <virtualtam@flibidi.net>
* PLUGIN demo_pluginArthurHoaro2015-11-084-0/+327
This plugin try to cover Shaarli's plugin API entirely. Can be used by plugin developper to make their own.