aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/plugins/PluginWallabagTest.php
Commit message (Collapse)AuthorAgeFilesLines
* Plugin wallabag: minor improvementsArthurHoaro2020-10-271-6/+29
| | | | | | | | - hide the wallabag icon for logged out users - set API V2 as default parameter - fix URL encoding issue with special chars Fixes #1147
* Compatibility with PHPUnit 9ArthurHoaro2020-09-291-1/+1
|
* Comply with PHPUnit V8: setup/teardown functions must return voidArthurHoaro2020-09-261-1/+1
|
* namespacing: add plugin tests to \Shaarli\Plugin\[...]VirtualTam2019-01-121-4/+2
| | | | Signed-off-by: VirtualTam <virtualtam@flibidi.net>
* namespacing: \Shaarli\Plugin\PluginManagerVirtualTam2019-01-121-1/+2
| | | | Signed-off-by: VirtualTam <virtualtam@flibidi.net>
* application: introduce the Shaarli\Config namespaceVirtualTam2017-03-041-0/+1
| | | | | | | | | | | Namespaces have been introduced with the REST API, and should be generalized to the whole codebase to manage object scope and benefit from autoloading. See: - https://secure.php.net/manual/en/language.namespaces.php - http://www.php-fig.org/psr/psr-4/ Signed-off-by: VirtualTam <virtualtam@flibidi.net>
* Cleanup: explicit method visibilityVirtualTam2017-01-051-4/+4
| | | | Signed-off-by: VirtualTam <virtualtam@flibidi.net>
* New init function for plugins, supports errors reportingArthurHoaro2016-10-141-2/+21
| | | | | | | | 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.
* PluginManager no longer uses singleton patternArthurHoaro2016-06-111-3/+4
|
* Use the configuration manager for wallabag and readityourself pluginArthurHoaro2016-06-111-2/+3
|
* Wallabag plugin improvementArthurHoaro2015-12-271-1/+3
| | | | | | | | * Fixes a bug where URL weren't properly encoded. * Adds Wallabag V2 support. * Adds a URL function to handle trailing slash. * UT. * README updated.
* unit tests for the wallabag pluginArthurHoaro2015-11-081-0/+49
+ removed exit error if the config is not found + coding style