aboutsummaryrefslogtreecommitdiffhomepage
path: root/plugins/wallabag/README.md
diff options
context:
space:
mode:
authorVirtualTam <virtualtam@flibidi.net>2016-01-02 20:09:29 +0100
committerVirtualTam <virtualtam@flibidi.net>2016-01-02 20:09:29 +0100
commitdefc8a3f033a44602c598c2028a9ee3ee2a86d1d (patch)
treeefb09f1c0d7b16e2c2dcb0313157d93ece6775b4 /plugins/wallabag/README.md
parent66d86ea521d737b1bc92b16b9c9b4126f545916c (diff)
parent938d9cce77ed5098dd69643795cb4014f3688b35 (diff)
downloadShaarli-defc8a3f033a44602c598c2028a9ee3ee2a86d1d.tar.gz
Shaarli-defc8a3f033a44602c598c2028a9ee3ee2a86d1d.tar.zst
Shaarli-defc8a3f033a44602c598c2028a9ee3ee2a86d1d.zip
Merge pull request #417 from ArthurHoaro/wallabag-improve
Wallabag plugin improvement
Diffstat (limited to 'plugins/wallabag/README.md')
-rw-r--r--plugins/wallabag/README.md25
1 files changed, 19 insertions, 6 deletions
diff --git a/plugins/wallabag/README.md b/plugins/wallabag/README.md
index 08e0d44a..5bc35be1 100644
--- a/plugins/wallabag/README.md
+++ b/plugins/wallabag/README.md
@@ -2,7 +2,8 @@
2 2
3For each link in your Shaarli, adds a button to save the target page in your [wallabag](https://www.wallabag.org/). 3For each link in your Shaarli, adds a button to save the target page in your [wallabag](https://www.wallabag.org/).
4 4
5### Installation/configuration 5### Installation
6
6Clone this repository inside your `tpl/plugins/` directory, or download the archive and unpack it there. 7Clone this repository inside your `tpl/plugins/` directory, or download the archive and unpack it there.
7The directory structure should look like: 8The directory structure should look like:
8 9
@@ -11,19 +12,31 @@ The directory structure should look like:
11 └── plugins 12 └── plugins
12    └── wallabag 13    └── wallabag
13    ├── README.md 14    ├── README.md
15 ├── config.php.dist
14    ├── wallabag.html 16    ├── wallabag.html
17    ├── wallabag.php
15    └── wallabag.png 18    └── wallabag.png
16``` 19```
17 20
18To enable the plugin, add `'wallabag'` to your list of enabled plugins in `data/options.php` (`PLUGINS` array) 21To enable the plugin, add `'wallabag'` to your list of enabled plugins in `data/options.php` (`PLUGINS` array).
19. This should look like: 22This should look like:
20 23
21``` 24```
22$GLOBALS['config']['PLUGINS'] = array('qrcode', 'any_other_plugin', 'wallabag') 25$GLOBALS['config']['PLUGINS'] = array('qrcode', 'any_other_plugin', 'wallabag')
23``` 26```
24 27
25Then, set the `WALLABAG_URL` variable in `data/options.php` pointing to your wallabag URL. Example: 28### Configuration
29
30Copy `config.php.dist` into `config.php` and setup your instance.
26 31
32*Wallabag instance URL*
27``` 33```
28$GLOBALS['config']['WALLABAG_URL'] = 'http://demo.wallabag.org' ; //Base URL of your wallabag installation 34$GLOBALS['config']['WALLABAG_URL'] = 'http://v2.wallabag.org' ;
29``` \ No newline at end of file 35```
36
37*Wallabag version*: either `1` (for 1.x) or `2` (for 2.x)
38```
39$GLOBALS['config']['WALLABAG_VERSION'] = 2;
40```
41
42> Note: these settings can also be set in `data/config.php`. \ No newline at end of file