Version: 4.0.9, by squidsk
Developer Last Online: Aug 2021
Category: Major Additions -
Version: 4.0.2
Rating:
Released: 01-09-2010
Last Update: 12-15-2014
Installs: 982
DB Changes Uses Plugins Auto-Templates
Re-useable Code Additional Files Translations
No support by the author.
*** CREATE A BACKUP OF YOUR FORUM AND DATABASE BEFORE INSTALLING ***
DESCRIPTION:
This is a Medals/Awards system. Admin can give members awards, and award icons will be displayed in member's profile, posts, as well as in a award list.
FEATURES: In AdminCP
- Can Create/Edit/Delete/Reorder categories/sub-categories in ACP (with category name and description)
- Can Create/Edit/Delete awards in ACP (with Award Name, Description, Icon URL, Image URL)
- Can Move one (or all) award(s) from one category to another
- Can set some awards un-classified (not displayed for public)
- Can re-order awards in awards showcase
- Issue awards to members, based on username or userid, with Issue Reason
- Remove awards from members
+ Writes granting/removing awards to the log
In ModCP
- Issue awards to members, based on username or userid, with Issue Reason
- Remove awards from members
+ Writes granting/removing award to the log
Front page
- Display awards list in with: Award Name, Description, Icon, Image, and Members who get each award.
- Display awards showcase in profile, with Award information, Issue time and reason
- Display award icons in postbit (showthread, showpost, announcement, private)
New Features/Additions since 3.8
- Points System
- Separate Award Request/Recommendation Forms
- CSS Customizable
Current Release Version 4.0.9
Added - Handling of user merges
Added - Handling of user deletes
Added - Manage awards on per user basis
Added - Extra info to the logs for mass removal and editing of issued awards
Added - Ability to collapse categories on awards.php
Added - Checksum file for checking for suspect file versions
Added - Various missing phrases
Fixed - Memberlist not showing awards when option is active
Fixed - Navtab not being selected (vb version < 4.2)
Fixed - Category title not being displayed on awards.php
Cypher please check your bug reports mail and add all the reported bugs to redmine. We did a few tests on latest vb4 and there are just a couple of things that need to be fixed, one is the error upon installation that was already reported here and solution is already known too.
The other error is display in user profile which is a little messed up.
We have updated our forum from vb3 to vb4 5 months ago and we're still waiting for a working latest vb4 version so we can port the old database and include the system to our forum.
I hope it's done soon..if not we'll lose 1 year of awards :S
Cypher please check your bug reports mail and add all the reported bugs to redmine. We did a few tests on latest vb4 and there are just a couple of things that need to be fixed, one is the error upon installation that was already reported here and solution is already known too.
The other error is display in user profile which is a little messed up.
We have updated our forum from vb3 to vb4 5 months ago and we're still waiting for a working latest vb4 version so we can port the old database and include the system to our forum.
I hope it's done soon..if not we'll lose 1 year of awards :S
To fix the display problem on the user profiles you need to do the following:
Quote:
Originally Posted by sadiq6210
UPDATE FOR: 4.0.8 - 4.1.3
(TAKE BACKUP BEFORE ANY REPLACE)
1- Find the template (memberinfo_block_myawards) and replace it all
require_once('./global.php');
global $vbulletin;
require_once(DIR . '/includes/class_bbcode.php');
$bbcode_parser =& new vB_BbCodeParser($vbulletin, fetch_tag_list());
class vB_ProfileBlock_MyAwards extends vB_ProfileBlock
{
var $template_name = 'memberinfo_block_myawards';
function confirm_empty_wrap()
{
return false;
}
function confirm_display()
{
return ($this->block_data['myawards'] != '');
}
function prepare_output($id = '', $options = array())
{
global $show, $vbphrase, $stylevar, $vbcollapse, $bgclass, $vbulletin;
require_once(DIR . '/includes/class_bbcode.php');
$bbcode_parser = new vB_BbCodeParser($this->registry, fetch_tag_list());
$result = $this->registry->db->query_read('
SELECT
*
FROM
' . TABLE_PREFIX . 'award_user AS award_user
LEFT JOIN ' . TABLE_PREFIX . 'award AS award USING (award_id)
WHERE
award_user.userid = ' . $this->profile->userinfo['userid'] . '
AND award.award_active = "1"
ORDER BY
'.$vbulletin->options['aw_awardorder'].'
');
if (($vbulletin->options['aw_points']) AND ($this->profile->userinfo['userid']))
{
$userpoints = $this->registry->db->query_read('
SELECT a.*, au.*, SUM(award_pointvalue) AS TotalPoints
FROM ' . TABLE_PREFIX . 'award a, ' . TABLE_PREFIX . 'award_user au
WHERE (au.userid = '.$this->profile->userinfo['userid'].') AND (a.award_id=au.award_id) AND (a.award_active = "1")
GROUP BY au.userid
');
while ($array = $this->registry->db->fetch_array($userpoints))
{
$this->block_data['total_points'] = $array['TotalPoints'];
}
}
I wonder if supporting the coder would help? I for one am willing to make a donation if it would help get this updated. I understand it takes time to create mods like this and mods like this are what make my forum. Anyone else?
Is there a way to increase the number of awards displayed in the user profile? Right now, a user can have 25 awards and on 18 or 19 will display down the page...