Go Back   vb.org Archive > vBulletin Modifications > Archive > Modification Graveyard

Reply
 
Thread Tools
[3.8.x] Staff Application Details »»
[3.8.x] Staff Application
Version: 1.3.1, by HMBeaty HMBeaty is offline
Developer Last Online: Feb 2020 Show Printable Version Email this Page

Category: Miscellaneous Hacks - Version: 3.8.x Rating:
Released: 06-23-2009 Last Update: 07-20-2009 Installs: 297
Uses Plugins Template Edits
Additional Files  
No support by the author.

Staff Application Version 1.3.1 by HMBeaty
(aka Redlinemotorsports/Redline)


Requirements
vBulletin 3.8.x

Changelog
1.0.0
- Initial BETA version released.

1.1.0
- Fixed problem when user would submit information, with information missing, it would make the fields blank again.
- Updated "Birthday" fields to look a bit neater (Hope you like this way better)

1.2.0
- Added "Who's Online" locations
- Added "Usergroup Settings" to deny/allow usergroups to use the application (AdminCP > vBulletin Options)
- Added "Post Count Settings" to deny/allow users based on post count (AdminCP > vBulletin Options)
- Added IP address and Host of applicant to the sent email
- Made the email easier to read
- Added an option to apply for "Administrator"
- Added the ability to turn on/off applications for Moderator / Super Moderator / Administrator (AdminCP > vBulletin Options)
- More fields added to the application
- Ability to create a new thread in the forum of your choice when a new application has been submitted (AdminCP > vBulletin Options)
- Option to turn on/off creating a new thread (AdminCP > vBulletin Options)
- Users "Username" Automatically added in (not editable by the user)
- Users "E-Mail" Automatically added in (editable by the user)
- Added the option to change the Location fields from "City, State" to "Region, Country" (AdminCP > vBulletin Options)
- Added error page for when "Accept New Applications" is set to "No"

1.3.0
- Completely XHTML 1.0 Valid
- Changed from "Moderator Application" to "Staff Application"
- Fixed bug in one of the radio buttons on the application
- Fixed incorrect setting for one of the AdminCP vBulletin Options
- Added error page for users who do not have enough posts to apply
- Fixed version checking error
- Changed the format for the phone number so if "City, State" is selected, it appears as "(123) 456-7890". However, if "Region, Country" is selected, it will still appear as a regular text area (e.g: 1234567890)
- Cleaned up the thread/email a little bit more (Changed the user's name so it's on one line (e.g:"User's Name: John Doe"))
- Application welcome message is now editable via vBulletin Options

1.3.1
- Bug fix: Typo (anough changed to enough)
- Bug fix: User's Name showed twice in email instead of Username

Features
- Sends an E-Mail to the E-Mail addresses you specify via the vBulletin Options in your AdminCP.
- Option to turn on/off submission of new applications via the vBulletin Options in your AdminCP.
- Not viewable by guests.
- All fields are required except for "Enter any additional information".
- If the member has selected "No" to "Do you moderate on other forums?", the fields "What other forum(s) do you moderate?" and "How long have you been moderating other forums?" are NOT required.
- Member must submit an E-Mail address and/or Phone Number (Only one of the two is required) for their contact information.
- And much more...

Installation
- Instructions included in readme.htm

Upgrading
- Instructions included in readme.htm

DO NOT remove the copyright!

If you would like to remove the copyright, or you have seen a website who you believe has illegally removed the copyright, please email webmaster@usmilitarylife.com

Supporters / CoAuthors

Show Your Support

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

Comments
  #222  
Old 10-29-2009, 11:15 PM
HMBeaty's Avatar
HMBeaty HMBeaty is offline
 
Join Date: Sep 2005
Posts: 4,141
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Farman and maddoghalo1, to change/add positions you want your users to apply for, you would have to edit the following lines in the template staff_app (x2)

HTML Code:
<if condition="$vboptions['usml_postitionapplying_mod_onoff'] == '1'">
		<input type="radio" name="position_applying" value="Moderator" />$vbphrase[usml_staffapp_mod]<br />
</if>
<if condition="$vboptions['usml_postitionapplying_smod_onoff'] == '1'">
		<input type="radio" name="position_applying" value="Super Moderator" />$vbphrase[usml_staffapp_smod]<br />
</if>
<if condition="$vboptions['usml_postitionapplying_admin_onoff'] == '1'">
		<input type="radio" name="position_applying" value="Administrator" />$vbphrase[usml_staffapp_admin]
</if>
More specifically, you would change value="whatever here" and change the phrases ($vbphrase[usml_staffapp_mod]), or hardcode your options in there versus using phrases
Reply With Quote
  #223  
Old 10-30-2009, 02:01 AM
ProFifaLeagues's Avatar
ProFifaLeagues ProFifaLeagues is offline
 
Join Date: Aug 2009
Location: Uk
Posts: 1,191
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Suoerb mod installed on 3.8.4 patch level 1 and working a treat thanks!!!
Reply With Quote
  #224  
Old 10-30-2009, 03:56 AM
Farman Farman is offline
 
Join Date: Jan 2009
Location: Pakistan
Posts: 34
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thanks for helping, but I can't get it to work. I made the changes in staff_app template but not appearing in the Settings nor the Form itself. and I can't find staff_app (x2) template.

Heres the code:
Code:
<if condition="$vboptions['usml_postitionapplying_gfx_onoff'] == '1'">
		<input type="radio" name="position_applying" value="GFX Team" />$vbphrase[usml_staffapp_gfx]<br />
</if>
<if condition="$vboptions['usml_postitionapplying_mod_onoff'] == '1'">
		<input type="radio" name="position_applying" value="Moderator" />$vbphrase[usml_staffapp_mod]<br />
</if>
<if condition="$vboptions['usml_postitionapplying_smod_onoff'] == '1'">
		<input type="radio" name="position_applying" value="Super Moderator" />$vbphrase[usml_staffapp_smod]<br />
</if>
<if condition="$vboptions['usml_postitionapplying_admin_onoff'] == '1'">
		<input type="radio" name="position_applying" value="Administrator" />$vbphrase[usml_staffapp_admin]
</if>
I also made a new phrase with the following details:

Code:
Template: Global
Product: [U.S. Military Life] Staff Application
Varname: usml_staffapp_gfx
Text: GFX Team

But not worked...
Reply With Quote
  #225  
Old 10-30-2009, 11:06 PM
HMBeaty's Avatar
HMBeaty HMBeaty is offline
 
Join Date: Sep 2005
Posts: 4,141
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Since you added this...
HTML Code:
<if condition="$vboptions['usml_postitionapplying_gfx_onoff'] == '1'"></if>
Did you add an option in your vBulletin options to turn this on/off? If not, remove that if condition and it should work

And "staff_app (x2)" means, you need to edit the template (staff_app) 2 times, because these options appear twice in that template
Reply With Quote
  #226  
Old 11-01-2009, 04:53 AM
Farman Farman is offline
 
Join Date: Jan 2009
Location: Pakistan
Posts: 34
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

How to add an option for this in Vbulletin options to turn it off/on? I've just edited the staff_app (x2) template
Reply With Quote
  #227  
Old 11-01-2009, 10:02 PM
giraffesyo's Avatar
giraffesyo giraffesyo is offline
 
Join Date: Nov 2007
Location: My Computer.
Posts: 22
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Is it possible to add prefixes to the thread creation depending on which position you are applying for?
Reply With Quote
  #228  
Old 11-09-2009, 01:16 PM
BlownFiveLiter's Avatar
BlownFiveLiter BlownFiveLiter is offline
 
Join Date: Jul 2009
Posts: 7
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Installed. :up:
Reply With Quote
  #229  
Old 11-09-2009, 07:24 PM
karlm's Avatar
karlm karlm is offline
 
Join Date: Jul 2006
Location: England
Posts: 447
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Can the options for positions be changed?

e.g. I won't be accepting 'admin' applications ever, as I handpick them myself. But, I'd like to able to offer various positions (links editor, forum1 mod, forum2 mod, forum33 mod, blog moderator, etc.)
Reply With Quote
  #230  
Old 11-09-2009, 08:23 PM
HMBeaty's Avatar
HMBeaty HMBeaty is offline
 
Join Date: Sep 2005
Posts: 4,141
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by karlm View Post
Can the options for positions be changed?

e.g. I won't be accepting 'admin' applications ever, as I handpick them myself. But, I'd like to able to offer various positions (links editor, forum1 mod, forum2 mod, forum33 mod, blog moderator, etc.)
See this post
Reply With Quote
  #231  
Old 11-10-2009, 06:03 PM
msu2k msu2k is offline
 
Join Date: Jan 2003
Posts: 61
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

This would be great.
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 06:47 PM.


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.05166 seconds
  • Memory Usage 2,316KB
  • Queries Executed 28 (?)
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
  • (2)bbcode_code
  • (2)bbcode_html
  • (1)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
  • (1)pagenav_pagelinkrel
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (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_postinfo_query
  • fetch_postinfo
  • 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
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete