Go Back   vb.org Archive > vBulletin Modifications > vBulletin 4.x Modifications > vBulletin 4.x Add-ons
Yet Another Awards System Details »»
Yet Another Awards System
Version: 4.0.9, by squidsk squidsk is offline
Developer Last Online: Aug 2021 Show Printable Version Email this Page

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
  • Fixed - Logging not working in modcp
  • Fixed - A few other minor bugs

Download Now

File Type: zip YaAS-Automation-R4.zip (6.1 KB, 735 views)
File Type: zip YaAS-4.0.9.zip (1.34 MB, 984 views)

Screenshots

File Type: png YaAS4-AwardListings.png (164.2 KB, 0 views)
File Type: png YaAS4-ProfileTab.png (162.9 KB, 0 views)
File Type: png YaAS4-Post.png (176.0 KB, 0 views)
File Type: png YAAS4-AdminCP.png (381.0 KB, 0 views)
File Type: png YaAS4-AdminCP-EditAward.png (255.4 KB, 0 views)
File Type: jpg YaAS4-AdminCP-EditCSS.jpg (126.2 KB, 0 views)

Supporters / CoAuthors

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #702  
Old 03-10-2011, 09:28 PM
Gamelobby's Avatar
Gamelobby Gamelobby is offline
 
Join Date: Jul 2007
Location: Long Beach, CA
Posts: 997
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hmm. i still have issues, some of which may not be this mod, but most of it is..

See Images*
When the Awards mod is enabled it screws up the background of the page, & moves the footer google ad all the way up. (which conflicts with other links, etc.)


*disregard the red circle around the broken image, that has nothing to do with this mod. (its a whole other headache. lol)


Correct (awards disabled)



Incorrect (awards enabled)



===============
Google Ad - Footer
===============


Correct, Google ad in footer (awards disabled)


Ad not in wrong place.. (because its in the correct place the footer)


Incorrect, Google ad (awards enabled)
Attached Images
File Type: jpg profile1.jpg (58.8 KB, 0 views)
File Type: jpg profile2.jpg (20.1 KB, 0 views)
File Type: jpg profile2a.jpg (16.5 KB, 0 views)
File Type: jpg profile-correct-google-ad.jpg (23.2 KB, 0 views)
File Type: jpg profile-correct-tabs-background.jpg (45.2 KB, 0 views)
Reply With Quote
  #703  
Old 03-11-2011, 04:25 PM
squidsk's Avatar
squidsk squidsk is offline
 
Join Date: Nov 2010
Posts: 969
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

OK here's an additional fix, that gets rid of the two deprecation messages and appears to fix visitor messages being messed up if awards are active on member pages.

Again in the YAAS in Member Profile - Profile plugin attached to the member_build_blocks_start hook make the following deletions:
Code:
global $vbulletin;  
require_once(DIR . '/includes/class_bbcode.php');
$bbcode_parser =[s]&[/s] new vB_BbCodeParser($vbulletin, fetch_tag_list());
and
Code:
    function prepare_output($id = '', $options = array())
    {
        global $show, $vbphrase, $stylevar, $vbcollapse, $bgclass, $vbulletin;
        
        require_once(DIR . '/includes/class_bbcode.php');
        $bbcode_parser =[s]&[/s] new vB_BbCodeParser($this->registry, fetch_tag_list());
Reply With Quote
  #704  
Old 03-12-2011, 06:42 AM
russellw russellw is offline
 
Join Date: Jan 2006
Posts: 12
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

A great addition (as always). In the 3.6 version I'm just migrating from I had our simple 2 award requests added as entries on the member drop-down and used a conditional statement so that they didn't show if the user viewing the drop-down didn't have permission to actually give awards.

I can't see how to duplicate that functionality in this version?

Cheers
Russ
Reply With Quote
  #705  
Old 03-15-2011, 02:29 AM
Gamelobby's Avatar
Gamelobby Gamelobby is offline
 
Join Date: Jul 2007
Location: Long Beach, CA
Posts: 997
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by squidsk View Post
OK here's an additional fix, that gets rid of the two deprecation messages and appears to fix visitor messages being messed up if awards are active on member pages.

Again in the YAAS in Member Profile - Profile plugin attached to the member_build_blocks_start hook make the following deletions:
Code:
global $vbulletin;  
require_once(DIR . '/includes/class_bbcode.php');
$bbcode_parser =[s]&[/s] new vB_BbCodeParser($vbulletin, fetch_tag_list());
and
Code:
    function prepare_output($id = '', $options = array())
    {
        global $show, $vbphrase, $stylevar, $vbcollapse, $bgclass, $vbulletin;
        
        require_once(DIR . '/includes/class_bbcode.php');
        $bbcode_parser =[s]&[/s] new vB_BbCodeParser($this->registry, fetch_tag_list());
Doesn't appear to do much on my site, should i keep the edits, or remove them.?
Reply With Quote
  #706  
Old 03-17-2011, 12:36 AM
Gamelobby's Avatar
Gamelobby Gamelobby is offline
 
Join Date: Jul 2007
Location: Long Beach, CA
Posts: 997
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Gamelobby View Post
Hmm. i still have issues, some of which may not be this mod, but most of it is..
When the Awards mod is enabled it screws up the background of the page
Any idea where the issue might be that is screwing up my background.?
Reply With Quote
  #707  
Old 03-18-2011, 03:19 AM
russellw russellw is offline
 
Join Date: Jan 2006
Posts: 12
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by russellw View Post
A great addition (as always). In the 3.6 version I'm just migrating from I had our simple 2 award requests added as entries on the member drop-down and used a conditional statement so that they didn't show if the user viewing the drop-down didn't have permission to actually give awards.

I can't see how to duplicate that functionality in this version?

Cheers
Russ
Resolved the issue the long way around by hard coding usergroup access permissions in the drop down menu - will be a pain to maintain when there are already inbuilt user permissions for request award but at least it works this way.

The next step of that process is now to pre-fill the user name of the nominated person - shouldn't be too difficult given that the form request is done from the user options drop down.

Cheers
Russ
Reply With Quote
  #708  
Old 03-26-2011, 09:22 PM
Gamelobby's Avatar
Gamelobby Gamelobby is offline
 
Join Date: Jul 2007
Location: Long Beach, CA
Posts: 997
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Since i updated to 4.0, awards are only showing for admins..!?
I dont see a setting for usergroups is there another reason they wouldn't show.?

*edit*
I didn't specify, but i meant they are not showing in the signature area, everywhere else seems fine.
Reply With Quote
  #709  
Old 03-27-2011, 01:27 PM
LightFatality LightFatality is offline
 
Join Date: Sep 2009
Posts: 14
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I got mine to work on 4.1.2 but with one issue: the medal on the user posts is appear on the right side of the avatar. I cannot figure out how to move it below. I looked around in postbit, but couldn't seem to find the spot.

I checked in the plugin too for the postbit options, but I couldn't seem to figure out if I needed to change anything there.

Can someone help?
Reply With Quote
  #710  
Old 03-28-2011, 12:43 AM
Gamelobby's Avatar
Gamelobby Gamelobby is offline
 
Join Date: Jul 2007
Location: Long Beach, CA
Posts: 997
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

In the options you can put it anywhere..
3rd option is:
Quote:
Postbit: Display Location
Reply With Quote
  #711  
Old 03-28-2011, 04:04 AM
pygmalion2008 pygmalion2008 is offline
 
Join Date: Oct 2008
Posts: 1
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I was wondering if its possible to change the display location of the awards based on the award category. I have "Awards" and "Trinkets", and I want to display the trinkets on the right, and the awards next to the user. Is this possible?
Reply With Quote
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 05:55 AM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.06855 seconds
  • Memory Usage 2,380KB
  • Queries Executed 27 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (4)bbcode_code
  • (4)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (4)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (5)pagenav_pagelinkrel
  • (11)post_thanks_box
  • (19)post_thanks_box_bit
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (1)post_thanks_postbit
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (13)postbit_attachment
  • (11)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • fetch_musername
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • post_thanks_function_fetch_thanks_bit_start
  • post_thanks_function_show_thanks_date_start
  • post_thanks_function_show_thanks_date_end
  • post_thanks_function_fetch_thanks_bit_end
  • post_thanks_function_fetch_post_thanks_template_start
  • post_thanks_function_fetch_post_thanks_template_end
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_attachment
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete