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
Navigation Manager Enhancements Details »»
Navigation Manager Enhancements
Version: 1.0.0b4, by Andreas Andreas is offline
Developer Last Online: Jan 2023 Show Printable Version Email this Page

Category: Administrative and Maintenance Tools - Version: 4.2.0 Rating:
Released: 05-17-2012 Last Update: 05-29-2012 Installs: 362
DB Changes Uses Plugins
Is in Beta Stage  
No support by the author.

This Add-on enhances the functionality of the Navigation Manager (vBulletin 4.2.0 Alpha 1 or higher) in various ways.

Planned Features
These features are planned for a later release
  • Code Cleanup & Refactoring
  • Documentation (!)
  • Dynamic content items
  • Inputs to directly change translations when editing an item

Download Now

File Type: xml product-navmanager_enhancements.xml (17.8 KB, 1356 views)
File Type: zip navmanager_enhancements-1_0_0-Beta_3.zip (8.1 KB, 276 views)
File Type: zip navmanager_enhancements_1-0-0_Beta_4.zip (11.5 KB, 1860 views)

Show Your Support

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

Comments
  #92  
Old 06-01-2012, 01:07 PM
odln018's Avatar
odln018 odln018 is offline
 
Join Date: Mar 2006
Posts: 210
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I am so frustrated with these blasted navbar managers. I cannot seem to get the thing to do what I want.

Even something basic such as the following:

Created a tab called "Arcade", pointed it to Arcade.php, but when I click on it, it goes to the page, but does not highlight the tab.

Second, I created a menu under "forum", called "Admin Tools", added Admincp to it, none of it shows up. I ensured permissions.

Would appreciate any assistance.
Reply With Quote
  #93  
Old 06-01-2012, 01:26 PM
hsoen hsoen is offline
 
Join Date: May 2010
Posts: 43
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Can this Add-On solve the problem of overlapping nav link menu of Forum tab with iTrader tab for vBulletin 4.2.0?
Reply With Quote
  #94  
Old 06-01-2012, 02:34 PM
aae55555 aae55555 is offline
 
Join Date: Feb 2012
Posts: 11
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by odln018 View Post
I am so frustrated with these blasted navbar managers. I cannot seem to get the thing to do what I want.

Even something basic such as the following:

Created a tab called "Arcade", pointed it to Arcade.php, but when I click on it, it goes to the page, but does not highlight the tab.
Enter the appropriate "THIS_SCRIPT" value in the navigation manager for that specific tab. In the "Scripts" text field.

If there is no THIS_SCRIPT value on that page, you must add it to the page first using the following syntax as an example:
Quote:
define('THIS_SCRIPT', 'arcade');
Then add "arcade" to the THIS_SCRIPT section ( In the "Scripts" text field.) in Nav Manager. Hope that helps, or at least helps you to do further research.
Reply With Quote
  #95  
Old 06-01-2012, 02:51 PM
Andreas's Avatar
Andreas Andreas is offline
 
Join Date: Jan 2004
Location: Germany
Posts: 6,863
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Can this Add-On solve the problem of overlapping nav link menu of Forum tab with iTrader tab for vBulletin 4.2.0?
That sounds like this Add-on is not compatible with vBulletin 4.2, eg. does not use the Navigation Manager.
Solution:
Wait for an update or disable the affected Plug-in and re-create the navigation in Navigation Manager.

Quote:
Created a tab called "Arcade", pointed it to Arcade.php, but when I click on it, it goes to the page, but does not highlight the tab.
This is the expected behaviour.

The system does not know that it should highlight the tab when the link is accessed.

There are several ways to achieve what you want
  • Set Append Tab id = Yes
    This changes to link to arcade.php?tabid=<X>.
    When the link is clicked the tabid is recoginzed and the tab does get highlighted
    Pro: Very easy
    Con: You are affectivtely creating duplicated content and it will only work for the tab link itself, if there are links within the tab and the user clicks it the tab will not active
  • Set the script id for the tab
    Pro: No duplicate content, the tab also becomes active if a user accesses arcade.php another way
    Con: You have to find out the THIS_SCRIPT constant for arcade.php it will only work for the tab link itself, if there are links within the tab and the user clicks it the tab will not active
  • Add some Plug-ins to handle tab activation
    Pro: This is the best solution and will also work for links within the tab if coded accordingly
    Con: You will need programming knowledge
Reply With Quote
  #96  
Old 06-01-2012, 03:54 PM
odln018's Avatar
odln018 odln018 is offline
 
Join Date: Mar 2006
Posts: 210
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by aae55555 View Post
Enter the appropriate "THIS_SCRIPT" value in the navigation manager for that specific tab. In the "Scripts" text field.

If there is no THIS_SCRIPT value on that page, you must add it to the page first using the following syntax as an example:


Then add "arcade" to the THIS_SCRIPT section ( In the "Scripts" text field.) in Nav Manager. Hope that helps, or at least helps you to do further research.

Great - all set there! Thank you.

Next question:

I'm wanting to have a separate tab, that's essentially a "placeholder" for links.

So, I'd have a tab called "Special Access", then I would have two links for "Jukebox", and "Library".

What I can't figure out is the url. It doesn't have a specific page, and if it requires one, I don't know what I would need to make to create one.
Reply With Quote
  #97  
Old 06-01-2012, 07:50 PM
aae55555 aae55555 is offline
 
Join Date: Feb 2012
Posts: 11
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by odln018 View Post
Great - all set there! Thank you.

Next question:

I'm wanting to have a separate tab, that's essentially a "placeholder" for links.

So, I'd have a tab called "Special Access", then I would have two links for "Jukebox", and "Library".

What I can't figure out is the url. It doesn't have a specific page, and if it requires one, I don't know what I would need to make to create one.
https://vborg.vbsupport.ru/showthread.php?t=228112
Reply With Quote
  #98  
Old 06-02-2012, 12:18 AM
odln018's Avatar
odln018 odln018 is offline
 
Join Date: Mar 2006
Posts: 210
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thank you, I've made more progress.

My last question (I hope), is that I can't make the tab highlight for some reason.

Screenshots enclosed.
Attached Images
File Type: png SpecialTab.PNG (16.6 KB, 0 views)
File Type: jpg SpecialTabSettings.jpg (70.0 KB, 0 views)
Reply With Quote
  #99  
Old 06-02-2012, 05:57 AM
Boofo's Avatar
Boofo Boofo is offline
 
Join Date: Mar 2002
Location: Des Moines, IA (USA)
Posts: 15,776
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Andreas,

How do we add a heading and have it still show in a mod if they don't have your mod here installed?

This works with your mod installed:

Code:
'navtype'  => 'heading',

But it doesn't work if your mod is disabled or not installed.
Reply With Quote
  #100  
Old 06-02-2012, 07:09 AM
Andreas's Avatar
Andreas Andreas is offline
 
Join Date: Jan 2004
Location: Germany
Posts: 6,863
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Boofo View Post
Andreas,

How do we add a heading and have it still show in a mod if they don't have your mod here installed?
That is not possible, sorry.
Reply With Quote
  #101  
Old 06-02-2012, 07:35 AM
Boofo's Avatar
Boofo Boofo is offline
 
Join Date: Mar 2002
Location: Des Moines, IA (USA)
Posts: 15,776
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

So, unless they have this mod installed, too, then we need to go another route.
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 11:11 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.05031 seconds
  • Memory Usage 2,372KB
  • 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_code
  • (7)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
  • (23)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
  • (5)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