tra('Unread Inter-User Messages'), 'description' => tra('Displays to users their number of new inter-user messages and a link to their message box.'), 'prefs' => ['feature_messages'], 'params' => [ 'showempty' => [ 'name' => tra('Show If Empty'), 'description' => tra('Show the module when there are no messages waiting. y|n ') . tra('Default=y'), 'required' => false, ] ] ]; } /** * @param $mod_reference * @param $module_params */ function module_messages_unread_messages($mod_reference, $module_params) { global $user; $globalperms = Perms::get(); $smarty = TikiLib::lib('smarty'); $tikilib = TikiLib::lib('tiki'); if ($user && $globalperms->messages) { $modUnread = $tikilib->user_unread_messages($user); if ($modUnread > 0 || ! isset($module_params['showempty']) || $module_params['showempty'] == 'y') { $smarty->assign('modUnread', $modUnread); $smarty->assign('tpl_module_title', tra("Messages")); } } }