MyShaarli/plugins/wallabag
ArthurHoaro e4b9a7633d Bugfix: do not store plugin errors in data.php
Before this, calling writeConfig() would have write error messages in data.php, because it uses 'plugins' array which is used for plugin configuration.

Causing the message error appear everytime.
2015-11-22 14:45:09 +01:00
..
config.php.dist PLUGIN wallabag 2015-11-07 16:45:20 +01:00
README.md PLUGIN wallabag 2015-11-07 16:45:20 +01:00
wallabag.html PLUGIN wallabag 2015-11-07 16:45:20 +01:00
wallabag.php Bugfix: do not store plugin errors in data.php 2015-11-22 14:45:09 +01:00
wallabag.png PLUGIN wallabag 2015-11-07 16:45:20 +01:00

Save to Wallabag plugin for Shaarli

For each link in your Shaarli, adds a button to save the target page in your wallabag.

Installation/configuration

Clone this repository inside your tpl/plugins/ directory, or download the archive and unpack it there.
The directory structure should look like:

└── tpl
    └── plugins
        └── wallabag
            ├── README.md
            ├── wallabag.html
            └── wallabag.png

To enable the plugin, add 'wallabag' to your list of enabled plugins in data/options.php (PLUGINS array) . This should look like:

$GLOBALS['config']['PLUGINS'] = array('qrcode', 'any_other_plugin', 'wallabag')

Then, set the WALLABAG_URL variable in data/options.php pointing to your wallabag URL. Example:

$GLOBALS['config']['WALLABAG_URL'] = 'http://demo.wallabag.org' ; //Base URL of your wallabag installation