Merge pull request #283 from ArthurHoaro/plugin-archiveorg
PLUGIN archiveorg
This commit is contained in:
commit
1b4ea59f93
4 changed files with 74 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>
|
25
plugins/archiveorg/archiveorg.php
Normal file
25
plugins/archiveorg/archiveorg.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
/**
|
||||
* Plugin Archive.org.
|
||||
*
|
||||
* Add an icon in the link list for archive.org.
|
||||
*/
|
||||
|
||||
/**
|
||||
* Add archive.org icon to link_plugin when rendering linklist.
|
||||
*
|
||||
* @param mixed $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 |
48
tests/plugins/PluginArchiveorgTest.php
Normal file
48
tests/plugins/PluginArchiveorgTest.php
Normal file
|
@ -0,0 +1,48 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* PluginArchiveorgTest.php
|
||||
*/
|
||||
|
||||
require_once 'plugins/archiveorg/archiveorg.php';
|
||||
|
||||
/**
|
||||
* Class PlugQrcodeTest
|
||||
* Unit test for the QR-Code plugin
|
||||
*/
|
||||
class PluginArchiveorgTest extends PHPUnit_Framework_TestCase
|
||||
{
|
||||
/**
|
||||
* Reset plugin path
|
||||
*/
|
||||
function setUp()
|
||||
{
|
||||
PluginManager::$PLUGINS_PATH = 'plugins';
|
||||
}
|
||||
|
||||
/**
|
||||
* Test render_linklist hook.
|
||||
*/
|
||||
function testArchiveorgLinklist()
|
||||
{
|
||||
$str = 'http://randomstr.com/test';
|
||||
$data = array(
|
||||
'title' => $str,
|
||||
'links' => array(
|
||||
array(
|
||||
'url' => $str,
|
||||
)
|
||||
)
|
||||
);
|
||||
|
||||
$data = hook_archiveorg_render_linklist($data);
|
||||
$link = $data['links'][0];
|
||||
// data shouldn't be altered
|
||||
$this->assertEquals($str, $data['title']);
|
||||
$this->assertEquals($str, $link['url']);
|
||||
|
||||
// plugin data
|
||||
$this->assertEquals(1, count($link['link_plugin']));
|
||||
$this->assertNotFalse(strpos($link['link_plugin'][0], $str));
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue