diff options
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/readityourself/book-open.png | bin | 0 -> 568 bytes | |||
-rw-r--r-- | plugins/readityourself/config.php.dist | 3 | ||||
-rw-r--r-- | plugins/readityourself/readityourself.html | 1 | ||||
-rw-r--r-- | plugins/readityourself/readityourself.php | 35 |
4 files changed, 39 insertions, 0 deletions
diff --git a/plugins/readityourself/book-open.png b/plugins/readityourself/book-open.png new file mode 100644 index 00000000..36513d7b --- /dev/null +++ b/plugins/readityourself/book-open.png | |||
Binary files differ | |||
diff --git a/plugins/readityourself/config.php.dist b/plugins/readityourself/config.php.dist new file mode 100644 index 00000000..d6b5cb85 --- /dev/null +++ b/plugins/readityourself/config.php.dist | |||
@@ -0,0 +1,3 @@ | |||
1 | <?php | ||
2 | |||
3 | $GLOBALS['plugins']['READITYOUSELF_URL'] = 'http://someurl.com'; \ No newline at end of file | ||
diff --git a/plugins/readityourself/readityourself.html b/plugins/readityourself/readityourself.html new file mode 100644 index 00000000..fa0210f7 --- /dev/null +++ b/plugins/readityourself/readityourself.html | |||
@@ -0,0 +1 @@ | |||
<span><a href="%s?url=%s"><img width="13" height="13" src="%s/readityourself/book-open.png" title="Read with Readityourself" /></a></span> \ No newline at end of file | |||
diff --git a/plugins/readityourself/readityourself.php b/plugins/readityourself/readityourself.php new file mode 100644 index 00000000..7bad906d --- /dev/null +++ b/plugins/readityourself/readityourself.php | |||
@@ -0,0 +1,35 @@ | |||
1 | <?php | ||
2 | |||
3 | // If we're talking about https://github.com/memiks/readityourself | ||
4 | // it seems kinda dead. | ||
5 | // Not tested. | ||
6 | |||
7 | // don't raise unnecessary warnings | ||
8 | if (is_file(PluginManager::$PLUGINS_PATH . '/readityourself/config.php')) { | ||
9 | include PluginManager::$PLUGINS_PATH . '/readityourself/config.php'; | ||
10 | } | ||
11 | |||
12 | if (!isset($GLOBALS['plugins']['READITYOUSELF_URL'])) { | ||
13 | header('Content-Type: text/plain; charset=utf-8'); | ||
14 | echo 'ReadItYourself plugin error: '. PHP_EOL; | ||
15 | echo ' Please copy "plugins/readityourself/config.php.dist" to config.php and configure your readityourself URL.'. PHP_EOL; | ||
16 | echo ' You can also define "$GLOBALS[\'plugins\'][\'READITYOUSELF_URL\']" in your global Shaarli config.php file.'; | ||
17 | exit; | ||
18 | } | ||
19 | |||
20 | /** | ||
21 | * Add readityourself icon to link_plugin when rendering linklist. | ||
22 | * | ||
23 | * @param $data - linklist data. | ||
24 | * @return mixed - linklist data with readityourself plugin. | ||
25 | */ | ||
26 | function hook_readityourself_render_linklist($data) { | ||
27 | $readityourself_html = file_get_contents(PluginManager::$PLUGINS_PATH . '/readityourself/readityourself.html'); | ||
28 | |||
29 | foreach ($data['links'] as &$value) { | ||
30 | $readityourself = sprintf($readityourself_html, $GLOBALS['plugins']['READITYOUSELF_URL'], $value['url'], PluginManager::$PLUGINS_PATH); | ||
31 | $value['link_plugin'][] = $readityourself; | ||
32 | } | ||
33 | |||
34 | return $data; | ||
35 | } | ||