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.
 
 
 
 
 
 

44 lines
1.1 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$
/**
* @return array
*/
function module_mustread_info()
{
return [
'name' => tr('Must Read'),
'description' => tr('Request the creation of a mustread item based on the current object.'),
'prefs' => ['mustread_enabled'],
'params' => [
'objectField' => [
'required' => true,
'name' => tr('Object Field'),
'description' => tr('Permanent name of the field containing the object reference'),
],
],
];
}
/**
* @param $mod_reference
* @param $module_params
*/
function module_mustread($mod_reference, $module_params)
{
global $prefs;
$smarty = TikiLib::lib('smarty');
$object = current_object();
$smarty->assign('mustread_module', [
'object' => $object,
'field' => $module_params['objectField'],
]);
}