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.
 
 
 
 
 
 

43 lines
1.3 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$
function wikiplugin_userpref_info()
{
return [
'name' => tra('User Preference'),
'documentation' => 'PluginUserpref',
'description' => tra('Display contents based on user preference settings'),
'body' => tr('Wiki text to display if conditions are met. The body may contain %0. Text after the marker
will be displayed to users not matching the conditions.', '<code>{ELSE}</code>'),
'prefs' => ['wikiplugin_userpref'],
'filter' => 'wikicontent',
'extraparams' => true,
'iconname' => 'user',
'introduced' => 4,
'params' => [
],
];
}
function wikiplugin_userpref($data, $params)
{
global $user, $prefs, $tikilib;
$dataelse = '';
if (strpos($data, '{ELSE}')) {
$dataelse = substr($data, strpos($data, '{ELSE}') + 6);
$data = substr($data, 0, strpos($data, '{ELSE}'));
}
$else = false;
foreach ($params as $prefName => $prefValue) {
if ($tikilib->get_user_preference($user, $prefName) != $prefValue) {
return $dataelse;
}
}
return $data;
}