]> git.immae.eu Git - github/shaarli/Shaarli.git/blame - plugins/wallabag/README.md
Process plugins administration page through Slim controllers
[github/shaarli/Shaarli.git] / plugins / wallabag / README.md
CommitLineData
263d1f64
A
1## Save to Wallabag plugin for Shaarli
2
3For each link in your Shaarli, adds a button to save the target page in your [wallabag](https://www.wallabag.org/).
4
938d9cce
A
5### Installation
6
db6dec0d 7Clone this repository inside your `tpl/plugins/` directory, or download the archive and unpack it there.
263d1f64
A
8The directory structure should look like:
9
db6dec0d 10```bash
263d1f64
A
11└── tpl
12 └── plugins
db6dec0d
V
13 └── wallabag
14 ├── README.md
15 ├── wallabag.html
16 ├── wallabag.meta
17 ├── wallabag.php
18 ├── wallabag.php
19 └── WallabagInstance.php
263d1f64
A
20```
21
51def0d8 22To enable the plugin, you can either:
263d1f64 23
1b8620b1 24 * enable it in the plugins administration page (`/admin/plugins`).
51def0d8 25 * add `wallabag` to your list of enabled plugins in `data/config.json.php` (`general.enabled_plugins` section).
263d1f64 26
938d9cce
A
27### Configuration
28
51def0d8 29Go to the plugin administration page, and edit the following settings (with the plugin enabled).
263d1f64 30
db6dec0d 31**WALLABAG_URL**: *Wallabag instance URL*
51def0d8 32Example value: `http://v2.wallabag.org`
938d9cce 33
db6dec0d 34**WALLABAG_VERSION**: *Wallabag version*
51def0d8 35Value: either `1` (for 1.x) or `2` (for 2.x)
938d9cce 36
db6dec0d 37> Note: these settings can also be set in `data/config.json.php`, in the plugins section.