PLUGIN archiveorg
Display an archive.org icon in linklist, foreach links.
This commit is contained in:
parent
a52e843593
commit
b7b9dbb0d5
3 changed files with 19 additions and 0 deletions
1
plugins/archiveorg/archiveorg.html
Normal file
1
plugins/archiveorg/archiveorg.html
Normal file
|
@ -0,0 +1 @@
|
||||||
|
<span><a href="https://web.archive.org/web/%s"><img width="13" height="13" src="plugins/archiveorg/internetarchive.png" title="View on archive.org" /></a></span>
|
18
plugins/archiveorg/archiveorg.php
Normal file
18
plugins/archiveorg/archiveorg.php
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Add archive.org icon to link_plugin when rendering linklist.
|
||||||
|
*
|
||||||
|
* @param $data - linklist data.
|
||||||
|
* @return mixed - linklist data with archive.org plugin.
|
||||||
|
*/
|
||||||
|
function hook_archiveorg_render_linklist($data) {
|
||||||
|
$archive_html = file_get_contents(PluginManager::$PLUGINS_PATH . '/archiveorg/archiveorg.html');
|
||||||
|
|
||||||
|
foreach ($data['links'] as &$value) {
|
||||||
|
$archive = sprintf($archive_html, $value['url']);
|
||||||
|
$value['link_plugin'][] = $archive;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $data;
|
||||||
|
}
|
BIN
plugins/archiveorg/internetarchive.png
Normal file
BIN
plugins/archiveorg/internetarchive.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 878 B |
Loading…
Reference in a new issue