53 lines
1.3 KiB
PHP
53 lines
1.3 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Plugin addlink_toolbar.
|
|
* Adds the addlink input on the linklist page.
|
|
*/
|
|
|
|
use Shaarli\Render\TemplatePage;
|
|
|
|
/**
|
|
* When linklist is displayed, add play videos to header's toolbar.
|
|
*
|
|
* @param array $data - header data.
|
|
*
|
|
* @return mixed - header data with addlink toolbar item.
|
|
*/
|
|
function hook_addlink_toolbar_render_header($data)
|
|
{
|
|
if ($data['_PAGE_'] == TemplatePage::LINKLIST && $data['_LOGGEDIN_'] === true) {
|
|
$form = [
|
|
'attr' => [
|
|
'method' => 'GET',
|
|
'action' => $data['_BASE_PATH_'] . '/admin/shaare',
|
|
'name' => 'addform',
|
|
'class' => 'addform',
|
|
],
|
|
'inputs' => [
|
|
[
|
|
'type' => 'text',
|
|
'name' => 'post',
|
|
'placeholder' => t('URI'),
|
|
],
|
|
[
|
|
'type' => 'submit',
|
|
'value' => t('Add link'),
|
|
'class' => 'bigbutton',
|
|
],
|
|
],
|
|
];
|
|
$data['fields_toolbar'][] = $form;
|
|
}
|
|
|
|
return $data;
|
|
}
|
|
|
|
/**
|
|
* This function is never called, but contains translation calls for GNU gettext extraction.
|
|
*/
|
|
function addlink_toolbar_dummy_translation()
|
|
{
|
|
// meta
|
|
t('Adds the addlink input on the linklist page.');
|
|
}
|