PLUGIN wallabag
Add a Wallabag icon in linklist for each link.
This commit is contained in:
parent
a52e843593
commit
263d1f6495
6 changed files with 68 additions and 0 deletions
4
COPYING
4
COPYING
|
@ -68,6 +68,10 @@ Files: inc/awesomplete*
|
||||||
License: MIT License (http://opensource.org/licenses/MIT)
|
License: MIT License (http://opensource.org/licenses/MIT)
|
||||||
Copyright: (C) 2015 Lea Verou - https://github.com/LeaVerou/awesomplete
|
Copyright: (C) 2015 Lea Verou - https://github.com/LeaVerou/awesomplete
|
||||||
|
|
||||||
|
Files: plugins/wallabag/wallabag.png
|
||||||
|
License: MIT License (http://opensource.org/licenses/MIT)
|
||||||
|
Copyright: (C) 2015 Nicolas Lœuillet - https://github.com/wallabag/wallabag
|
||||||
|
|
||||||
----------------------------------------------------
|
----------------------------------------------------
|
||||||
ZLIB/LIBPNG LICENSE
|
ZLIB/LIBPNG LICENSE
|
||||||
|
|
||||||
|
|
29
plugins/wallabag/README.md
Normal file
29
plugins/wallabag/README.md
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
## Save to Wallabag plugin for Shaarli
|
||||||
|
|
||||||
|
For each link in your Shaarli, adds a button to save the target page in your [wallabag](https://www.wallabag.org/).
|
||||||
|
|
||||||
|
### 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
|
||||||
|
```
|
3
plugins/wallabag/config.php.dist
Normal file
3
plugins/wallabag/config.php.dist
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
$GLOBALS['plugins']['WALLABAG_URL'] = 'https://demo.wallabag.org/';
|
1
plugins/wallabag/wallabag.html
Normal file
1
plugins/wallabag/wallabag.html
Normal file
|
@ -0,0 +1 @@
|
||||||
|
<span><a href="%s/?plainurl=%s" target="_blank"><img width="13" height="13" src="%s/wallabag/wallabag.png" title="Save to wallabag" /></a></span>
|
31
plugins/wallabag/wallabag.php
Normal file
31
plugins/wallabag/wallabag.php
Normal file
|
@ -0,0 +1,31 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
// don't raise unnecessary warnings
|
||||||
|
if (is_file(PluginManager::$PLUGINS_PATH . '/wallabag/config.php')) {
|
||||||
|
include PluginManager::$PLUGINS_PATH . '/wallabag/config.php';
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!isset($GLOBALS['plugins']['WALLABAG_URL'])) {
|
||||||
|
header('Content-Type: text/plain; charset=utf-8');
|
||||||
|
echo 'Wallabag plugin error: '. PHP_EOL;
|
||||||
|
echo ' Please copy "plugins/wallabag/config.php.dist" to config.php and configure your Wallabag URL.'. PHP_EOL;
|
||||||
|
echo ' You can also define "$GLOBALS[\'plugins\'][\'WALLABAG_URL\']" in your global Shaarli config.php file.';
|
||||||
|
exit;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Add wallabag icon to link_plugin when rendering linklist.
|
||||||
|
*
|
||||||
|
* @param $data - linklist data.
|
||||||
|
* @return mixed - linklist data with wallabag plugin.
|
||||||
|
*/
|
||||||
|
function hook_wallabag_render_linklist($data) {
|
||||||
|
$wallabag_html = file_get_contents(PluginManager::$PLUGINS_PATH . '/wallabag/wallabag.html');
|
||||||
|
|
||||||
|
foreach ($data['links'] as &$value) {
|
||||||
|
$wallabag = sprintf($wallabag_html, $GLOBALS['plugins']['WALLABAG_URL'], $value['url'], PluginManager::$PLUGINS_PATH);
|
||||||
|
$value['link_plugin'][] = $wallabag;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $data;
|
||||||
|
}
|
BIN
plugins/wallabag/wallabag.png
Normal file
BIN
plugins/wallabag/wallabag.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 369 B |
Loading…
Reference in a new issue