You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

60 lines
1.8 KiB

<?php
// (c) Copyright by authors of the Tiki Wiki CMS Groupware Project
//
// All Rights Reserved. See copyright.txt for details and a complete list of authors.
// Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details.
// $Id$
require_once("lib/copyrights/copyrightslib.php");
function wikiplugin_copyright_info()
{
return [
'name' => tra('Copyright'),
'documentation' => 'PluginCopyright',
'description' => tra('Insert copyright notices'),
'prefs' => [ 'wiki_feature_copyrights', 'wikiplugin_copyright' ],
'body' => tr(
'Pattern for display of the copyright information. May contain %0~title~%1, %0~year~%1, %0~authors~%1 and %0~holder~%1.',
'<code>',
'</code>'
),
'iconname' => 'copyright',
'introduced' => 1,
'params' => [
],
];
}
function wikiplugin_copyright($data, $params)
{
global $dbTiki;
$copyrightslib = new CopyrightsLib();
if (! isset($_REQUEST['page'])) {
return '';
}
$result = '';
$copyrights = $copyrightslib->list_copyrights($_REQUEST['page']);
for ($i = 0; $i < $copyrights['cant']; $i++) {
$notice = str_replace("~title~", $copyrights['data'][$i]['title'], $data);
$notice = str_replace("~year~", $copyrights['data'][$i]['year'], $notice);
$notice = str_replace("~authors~", $copyrights['data'][$i]['authors'], $notice);
$notice = str_replace("~holder~", $copyrights['data'][$i]['holder'], $notice);
$result = $result . $notice;
}
global $tiki_p_edit_copyrights;
if ((isset($tiki_p_edit_copyrights)) && ($tiki_p_edit_copyrights == 'y')) {
$result = $result . "\n<a href=\"copyrights.php?page=" . $_REQUEST['page'] . "\">Edit copyrights</a> for ((" . $_REQUEST['page'] . "))\n";
}
return $result;
}