Add origin plugin

This commit is contained in:
Knah Tsaeb 2018-01-04 14:49:40 +01:00
parent e37a7ab9ec
commit 0e94b7b7f8
4 changed files with 90 additions and 0 deletions

View File

@ -0,0 +1,2 @@
<label for="lf_stuff"><i>Demo Stuff</i></label><br>
<input type="text" name="lf_stuff" id="lf_stuff" value="%s" class="lf_input"><br>

View File

@ -0,0 +1 @@
description="For each link, add new field for origin of shaare"

84
plugins/origin/origin.php Normal file
View File

@ -0,0 +1,84 @@
<?php
/**
* Plugin origin
*/
/**
* Hook render_editlink.
*
* Template placeholders:
* - field_plugin: add link fields after tags.
*
* @param array $data data passed to plugin
*
* @return array altered $data.
*/
function hook_origin_render_editlink($data)
{
// Load HTML into a string
$html = file_get_contents(PluginManager::$PLUGINS_PATH .'/demo_plugin/field.html');
// replace value in HTML if it exists in $data
if (!empty($data['link']['via'])) {
$html = sprintf($html, $data['link']['via']);
} else {
$html = sprintf($html, '');
}
// field_plugin
$data['edit_link_plugin'][] = $html;
return $data;
}
/**
* Hook savelink.
*
* Triggered when a link is save (new or edit).
*
* @param array $data contains the new link data.
*
* @return array altered $data.
*/
function hook_origin_save_link($data)
{
// Save link added in editlink field
if (!empty($_POST['lf_origin'])) {
$data['via'] = escape($_POST['lf_origin']);
}
return $data;
}
/**
* Add externalThumbshot icon to link_plugin when rendering linklist.
*
* @param mixed $data - linklist data.
*
* @return mixed - linklist data with readityourself plugin.
*/
function hook_origin_render_linklist($data,$conf)
{
$origin_html = file_get_contents(PluginManager::$PLUGINS_PATH . '/origin/render.html');
foreach ($data['links'] as &$value) {
if(!empty($value['via'])){
$host = getJustDomain($value['via']);
$origin = sprintf($origin_html, $value['via'], $host);
$value['description'] = $value['description'].$origin;
}
}
return $data;
}
// Try to get just domain for @via
function getJustDomain($url)
{
$parts = parse_url($url);
return trim($parts['host']);
}

View File

@ -0,0 +1,3 @@
<div class="origin clear">
Origin -> <a href="%s">%s</a>
</div>