vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   Navbits on Modifcations (https://vborg.vbsupport.ru/showthread.php?t=173800)

John3971 03-22-2008 08:49 AM

Navbits on Modifcations
 
hey how do i fix the navbits for my modification? i mean now it is

Forum Name >> Modification >> subpage for Modification

and i want it to be like this instead

Modification >> subpage for modification or when you are on the main page of the modification it is just

Modification instead of

Forum Name >> Modification

i hope you understand what i mean here.

Dismounted 03-22-2008 11:24 AM

When building the navbits in your modification, you need to add extra "levels". This is just before you call "construct_navbits()".

John3971 03-22-2008 11:52 AM

have no idea what you mean. im not good in php and thoose stuff so i would need an example of how its should look like.

right now its like this:

Code:

        // build navbar
        $navbits = array();
        $navbits['index.php' . $vbulletin->session->vars['sessionurl'] . ""] = $vbphrase['jmdp_home'];
        $navbits[''] = $singlenews['newstitle'];

        $navbits = construct_navbits($navbits);
        eval('$navbar = "' . fetch_template('navbar') . '";');
        eval('print_output("' . fetch_template('JmDPortal_singlenews') . '");');


Dismounted 03-22-2008 12:25 PM

To create the navbits like "Forum Name > Modification > Function", this would be the code:
PHP Code:

// build navbar
$navbits = array(
    
'modification.php' => 'Modification',
    
'modification.php?do=function' => 'Function'
);

$navbits construct_navbits($navbits); 


John3971 03-22-2008 12:33 PM

think you missunderstood me. i donĀ“t want the first Forum Name it should be removed.

Dismounted 03-22-2008 12:39 PM

You can't remove it (well you can, but not without some difficulty).

John3971 03-22-2008 06:20 PM

Quote:

Originally Posted by Dismounted (Post 1471560)
You can't remove it (well you can, but not without some difficulty).

what difficultys? because i really don?t want the first to forum because this is for like the startpage.

John3971 03-25-2008 01:25 PM

Bump

Dismounted 03-26-2008 02:41 AM

You will need to hook in to where it creates the navbits (in the construct_navbits() process), and add an extra one in before the Forums link.

John3971 03-26-2008 07:08 AM

so can someone give code for that?


All times are GMT. The time now is 10:39 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01075 seconds
  • Memory Usage 1,729KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)bbcode_code_printable
  • (1)bbcode_php_printable
  • (1)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.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/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.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
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete