vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 4.x Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=245)
-   -   Add-On Releases - Everywhere Sidebar 4 VB4 (https://vborg.vbsupport.ru/showthread.php?t=233871)

almannai 05-12-2010 05:35 AM

you r welcome

BRotondi 05-13-2010 09:35 AM

Thanks for this mod! Nice work!

Bruno

BRotondi 05-14-2010 03:50 PM

With your nice mod, I can create a subforum navigation in the sidebar :).

But one Problem: How to determine, in which forum the user is at the moment?

I can set my php-block to "never cache", but $forum[forumid] is not evaluated at the moment, "includes\block\html.php" evaluates it...

An idea how to solve this?

Thanks!
Bruno

Edit: Got it! Use $GLOBALS['foruminfo']['forumid']

AK47 Nemesis 05-15-2010 05:32 AM

Great mod, one question though, I want to use it on my vBadvanced frontpage. How would I enable it on this piece of php?

PHP Code:

<?php
// ++=========================================================================++
// || vBadvanced CMPS v4.0.0 (vB 4.0) - 70695
// || ? 2003-2010 vBadvanced.com - All Rights Reserved
// || This file may not be redistributed in whole or significant part.
// || http://vbadvanced.com
// || Downloaded 03:20, Mon May 10th 2010
// || 946070695_408351046488
// ++ ========================================================================++

error_reporting(E_ALL & ~E_NOTICE & ~8192);
define('THIS_SCRIPT''adv_index');
define('VBA_PORTAL'true);
define('VBA_SCRIPT''CMPS');

// ============================================
// Enter the full path to your forum here
// Example: /home/vbadvanced/public_html/forum
// ============================================

$forumpath '';

// ============================================
// No Further Editing Necessary!
// ============================================

if ($forumpath)
{
    if (!
is_dir($forumpath))
    {
        echo 
'Invalid forum path specified! Please edit this file and be sure to include the correct path for your $forumpath variable.';
        exit;
    }

    
chdir($forumpath);
}

$phrasegroups = array();
$globaltemplates = array();
$actiontemplates = array();
$specialtemplates = array();

require_once(
'./includes/vba_cmps_include_template.php');
require_once(
'./global.php');

print_portal_output($home);

?>


BRotondi 05-15-2010 07:02 AM

Have a look at the plugins "Product : EveryWhere Sidebar". Perhaps you should simply add another one for you frontpage. Read "Instructions for custom pages"? Perhaps also this helps.

almannai 05-15-2010 10:42 AM

:)
Quote:

Originally Posted by BRotondi (Post 2036987)
With your nice mod, I can create a subforum navigation in the sidebar :).

But one Problem: How to determine, in which forum the user is at the moment?

I can set my php-block to "never cache", but $forum[forumid] is not evaluated at the moment, "includes\block\html.php" evaluates it...

An idea how to solve this?

Thanks!
Bruno

Edit: Got it! Use $GLOBALS['foruminfo']['forumid']


Great :)

Quote:

Originally Posted by AK47 Nemesis (Post 2037234)
Great mod, one question though, I want to use it on my vBadvanced frontpage. How would I enable it on this piece of php?

PHP Code:

<?php
// ++=========================================================================++
// || vBadvanced CMPS v4.0.0 (vB 4.0) - 70695
// || ? 2003-2010 vBadvanced.com - All Rights Reserved
// || This file may not be redistributed in whole or significant part.
// || http://vbadvanced.com
// || Downloaded 03:20, Mon May 10th 2010
// || 946070695_408351046488
// ++ ========================================================================++

error_reporting(E_ALL & ~E_NOTICE & ~8192);
define('THIS_SCRIPT''adv_index');
define('VBA_PORTAL'true);
define('VBA_SCRIPT''CMPS');

// ============================================
// Enter the full path to your forum here
// Example: /home/vbadvanced/public_html/forum
// ============================================

$forumpath '';

// ============================================
// No Further Editing Necessary!
// ============================================

if ($forumpath)
{
    if (!
is_dir($forumpath))
    {
        echo 
'Invalid forum path specified! Please edit this file and be sure to include the correct path for your $forumpath variable.';
        exit;
    }

    
chdir($forumpath);
}

$phrasegroups = array();
$globaltemplates = array();
$actiontemplates = array();
$specialtemplates = array();

require_once(
'./includes/vba_cmps_include_template.php');
require_once(
'./global.php');

print_portal_output($home);

?>


I think you should register variables as instructed in the vba_cmps_include_template.php file. I'm guessing as I don't know how vba works

Khan_ 05-16-2010 03:22 AM

i am using this mod to have a custom page --> https://vborg.vbsupport.ru/showthread.php?t=235359 ..and i dont know which template to edit and add {vb:raw sidebaropen} and {vb:raw sidebarext}

i am using vb 4.0.3 . please help .

it works flawless on all default vb pages except custom pages .. Wonderful mod .

marked as installed~
Nominated for motm~

BRotondi 05-16-2010 07:18 AM

Quote:

Originally Posted by Khan_ (Post 2037701)
dont know which template

Use Firebug to see element details. Then search templates for this detail. But not sure, if this works also here...

BRotondi 05-16-2010 07:25 AM

And perhaps this one is also interesting for some users: You can change the title of any php block by customising $this->blockinfo['title'] with any html code. Including images, links, ... :)

Here an example, how to use this for navigating: vbMediaWiki, Missiologie. with php-code
Code:

$f = $GLOBALS['foruminfo']['forumid'];
if ($f == 76) {
    $this->blockinfo['title'] = '<a href="forumdisplay.php?76-Missiologie.net-(fran?ais)">Missiologie.net</a>';
    $s = vB_Template::create('sidebar_missiologie')->render();
} elseif ($f == 70) {
    $this->blockinfo['title'] = '<a href="forumdisplay.php?70-vbMediaWiki">vbMediaWiki</a>';
    $s = vB_Template::create('sidebar_vbmediawiki')->render();
}
return $s;

Of course more automation is possible here. Only a first step.

AK47 Nemesis 05-16-2010 06:19 PM

Quote:

Originally Posted by BRotondi (Post 2037259)
Have a look at the plugins "Product : EveryWhere Sidebar". Perhaps you should simply add another one for you frontpage. Read "Instructions for custom pages"? Perhaps also this helps.

Where would I hook it to? And you have any idea what exact code to use for the plugin?

Quote:

Originally Posted by almannai (Post 2037306)
I think you should register variables as instructed in the vba_cmps_include_template.php file. I'm guessing as I don't know how vba works

There's nothing like those 2 needed lines, so I have no idea where to put it in.


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

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.02487 seconds
  • Memory Usage 1,765KB
  • 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
  • (2)bbcode_php_printable
  • (5)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (4)pagenav_pagelinkrel
  • (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