Go Back   vb.org Archive > vBulletin Modifications > vBulletin 4.x Modifications > vBulletin 4.x Add-ons
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
[DBTech] User Status & Moods v1 (vB4) Details »»
[DBTech] User Status & Moods v1 (vB4)
Version: 1.3.6pl2, by DragonByte Tech DragonByte Tech is offline
Developer Last Online: Mar 2023 Show Printable Version Email this Page

Category: Mini Mods - Version: 4.x.x Rating:
Released: 05-31-2010 Last Update: 12-02-2014 Installs: 531
DB Changes Uses Plugins
Additional Files Translations  
No support by the author.

DragonByte Technologies are proud to present User Status & Moods v1: A mini mod to give your members the option of setting Facebook-like status updates / mood.


Why User Status & Moods?

Sometimes, a simple "mood" isn't enough. DBTech's User Status & Moods mods lets your members put their current doings and feelings into a short message to be displayed next to their posts and in their profiles.

-------------------------------------------------------------------------------------------

If you like this mod please hit the button to the right ---->

Please remember to click the, button to the right if you installed the mod ---->

What does 'Marking As Installed' do ?

* It helps you to stay on top of updates - members who have installed modifications will be notified by us whenever new updates are available.

*
For security issues - vbulletin.org will contact all members who have installed a modification whenever a security issue is brought to their attention.

* Marking a modification as installed also helps us know how many people are using our work, giving us extra incentive to provide more features and new modifications.

We appreciate the support!
-------------------------------------------------------------------------------------------

Priority support for this version is handled at the Developers Website.

-------------------------------------------------------------------------------------------

Major Features

In-Line Editing: You can quickly update your status either from your profile, or from any of your posts, all with AJAX and all without reloading the page.

Postbit Integration: Members' statuses will show next to all their posts.

Profile Integration: Edit statuses and show a list of recent statuses in a member's profile.

-------------------------------------------------------------------------------------------

To Install:
  1. Upload all files in the "upload" folder to your forum.
  2. Import the product file via the product manager in your AdminCP.
  3. Done!
----------------------------------------------------------------------------------

Feature List
  • AJAX-enabled
  • Edit statuses inline or in profiles
  • Edit moods inline or in profiles
  • List a member's recent statuses in their profiles
  • Ability to ban usergroups from posting statuses
  • Ability to set usergroups as able to edit others' statuses
  • Toggle character limit
  • Settable status prefix
  • Settable default status
  • Uses vBulletin's Censorship options to censor banned words

Download Now

File Type: zip [DBTech] User Status & Moods v1.3.6-pl2.zip (317.7 KB, 430 views)

Screenshots

File Type: jpg fbstatus1.jpg (75.6 KB, 0 views)
File Type: jpg fbstatus2_.jpg (53.7 KB, 0 views)

Show Your Support

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

Comments
  #522  
Old 06-19-2011, 02:04 PM
Alan_SP's Avatar
Alan_SP Alan_SP is offline
 
Join Date: Nov 2009
Posts: 1,122
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Deimos View Post
I've manually added most of the VBMoods and am sharing the xml file here

Missed off the "crackhead" one.
It looks interesting, but could you also attach images you use for these moods? Please...
Reply With Quote
  #523  
Old 06-19-2011, 04:22 PM
Deimos Deimos is offline
 
Join Date: Oct 2002
Posts: 529
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Sure, done
Attached Files
File Type: zip moodimages.zip (92.1 KB, 29 views)
Reply With Quote
Благодарность от:
Alan_SP
  #524  
Old 06-19-2011, 04:32 PM
Masked Crusader Masked Crusader is offline
 
Join Date: Oct 2005
Location: Sacramento, CA, USA
Posts: 293
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Installed. Working well on 4.1.4. I had to change some stuff around and create a new postbit hook so that I could put the mood into a uniform container.

You can see it working here: http://www.maskedcrusader.com/announ...html#post41749

Installed!
Reply With Quote
  #525  
Old 06-20-2011, 02:19 PM
Alan_SP's Avatar
Alan_SP Alan_SP is offline
 
Join Date: Nov 2009
Posts: 1,122
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Just to add, you could use clear.gif for empty mood, as this mod doesn't allow disabling moods after you choose one. You could name this mood 00emtpy (or something like that) for sorting purposes, that places it at the top of moods list.
Reply With Quote
  #526  
Old 06-24-2011, 12:53 PM
skariko skariko is offline
 
Join Date: Apr 2006
Location: Milano (Italy)
Posts: 153
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hello,
anyone know how can i move the status&mood BELOW the avatar?

Thanks.
Reply With Quote
  #527  
Old 06-24-2011, 03:38 PM
Alan_SP's Avatar
Alan_SP Alan_SP is offline
 
Join Date: Nov 2009
Posts: 1,122
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

You need to edit file: /dbtech/status/hooks/postbit_display_complete.php

You have this line twice, you'll need to change it on both places:

PHP Code:
        $template_hook ['postbit_userinfo_left'] .= $mood->render (); 
You can use first next hook (it's not right after avatar) postbit_userinfo_right_after_posts, or you can create your own hook right after avatar in your postbit (probably legacy, but it could be in either templates)

For example, right after avatar in postbit legacy template you create hook to look like this:

HTML Code:
{vb:raw template_hook.postbit_right_after_avatar}
Hook name is intentionally descriptive, it could be different, whatever you like, but you need to know what name you use.

After that change line on both places to suite to hook you'll use.

If you want to use existing hook:

PHP Code:
        $template_hook ['postbit_userinfo_right_after_posts'] .= $mood->render (); 
Or newly created just after avatar:

PHP Code:
        $template_hook ['postbit_right_after_avatar'] .= $mood->render (); 
Mind names of hooks and that's it. :up:
Reply With Quote
2 благодарности(ей) от:
DragonByte Tech, skariko
  #528  
Old 06-27-2011, 05:51 AM
skariko skariko is offline
 
Join Date: Apr 2006
Location: Milano (Italy)
Posts: 153
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Alan_SP View Post
Mind names of hooks and that's it. :up:
Wow, it works.
I appreciate your help, thank you!
Reply With Quote
  #529  
Old 06-29-2011, 08:27 PM
clubplanet clubplanet is offline
 
Join Date: Dec 2001
Location: Buenos Aires
Posts: 30
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

This works exactly as described but I do have one question. Is there anyway to censor a word in status? I have a couple user's who have taken it upon themselves to get rid of their custom titles and then put "Administrator" and the like in the status. I don't want to use the censored words option inside vbulletin for this because it will censor the word across my whole board.
Is there any way to censor or disallow certain words for just this mod?
Reply With Quote
  #530  
Old 06-30-2011, 12:22 AM
XiTCLUB XiTCLUB is offline
 
Join Date: Jan 2010
Location: Lahore, Pakistan
Posts: 304
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

installed but not working for me.. can't select mode.. \in admincp when i click on add new mod nothing happened.. changed permissions cant save..
Reply With Quote
  #531  
Old 07-01-2011, 01:23 PM
Halfhidden's Avatar
Halfhidden Halfhidden is offline
 
Join Date: Sep 2009
Location: Penzance Cornwall
Posts: 120
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Could this be put in a widget so that the members can see their own status wherever they are or do they have to go to their status to see this?
Reply With Quote
Reply


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 06:31 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.06326 seconds
  • Memory Usage 2,371KB
  • Queries Executed 26 (?)
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
  • (1)bbcode_html
  • (3)bbcode_php
  • (2)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
  • (3)pagenav_pagelinkrel
  • (11)post_thanks_box
  • (15)post_thanks_box_bit
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (3)post_thanks_postbit
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (4)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