vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   Show Mods And Admin on Non-vb PHP Page (https://vborg.vbsupport.ru/showthread.php?t=78258)

Mile-O-Phile 03-17-2005 11:43 AM

Show Mods And Admin on Non-vb PHP Page
 
I have a line on my home page that offers links to various parts of my site (i.e. Home, News, Links, Resource, Quizzes, etc.) but I would like to add a further section to the line (namely 'Admin') that will only appear in the list if one of the people browsing the page is either myself or one of the moderators from my forum.

How could I do this?

sabret00the 03-17-2005 06:08 PM

if it's a vB-powered page then you can use the is_member_of function() in a conditional :)

alternatively you can go old school with

PHP Code:

if ($bbuserinfo['usergroupid'] == OR $bbuserinfo['usergroupid'] == or $bbuserinfo['usergroupid'] == XX)
{
    
your block of code here


the same applies if you're using templates too.

Mile-O-Phile 03-18-2005 07:16 AM

Quote:

Originally Posted by sabret00the
if it's a vB-powered page then you can use the is_member_of function() in a conditional :)

alternatively you can go old school with

PHP Code:

if ($bbuserinfo['usergroupid'] == OR $bbuserinfo['usergroupid'] == or $bbuserinfo['usergroupid'] == XX)
{
    
your block of code here


the same applies if you're using templates too.

Thanks, but as the title of the thread states, it's a non-vb page. It's my index.php of my main site.

sabret00the 03-18-2005 07:59 AM

then in that case check the session.php see if it defines the usergroup in the cookies and then use $_COOKIE['usergroupid'] :)

alternatively you could include the vb-global.php just for that piece of code.

Mile-O-Phile 03-18-2005 08:01 AM

Quote:

Originally Posted by sabret00the
then in that case check the session.php see if it defines the usergroup in the cookies and then use $_COOKIE['usergroupid'] :)

alternatively you could include the vb-global.php just for that piece of code.

Thanks again, but my knowledge of PHP is limited to passing a variable to a page and if...else... constructs.

vBulletin's structure is way beyond my understanding.

What steps are necessary to do this? :(

sabret00the 03-18-2005 08:27 AM

chick this with marco or someone else that will come in this thread but

PHP Code:

rest of your page;

include(
"forums/global.php");
code i showed you before;
unset(
"forums/global.php"); //not sure if you can unset a file like that that's why you need a master coder in here
more of your page


Marco van Herwaarden 03-18-2005 08:42 AM

No you can NOT use unset on a file, only on a variable. (lol not a master coder myself ;) )
Quote:

Originally Posted by sabret00the
chick this with marco

Hmm a nice chick :D

Mile-O-Phile 03-18-2005 10:55 AM

Well, I messed around with an example page. Just used this:

PHP Code:

<?php
include("forum/global.php"); 
$admin $_COOKIE['usergroupid'];
?>
<html>
<head>
<title>Example</title>
</head>
<body>
<?php
    
echo $admin;
?>
</body>
</html>

The page is here.

I got the following errors:

Warning: main(./includes/init.php): failed to open stream: No such file or directory in /home/linguami/public_html/forum/global.php on line 18

Fatal error: main(): Failed opening required './includes/init.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/linguami/public_html/forum/global.php on line 18

Now what? :confused:

Marco van Herwaarden 03-18-2005 11:35 AM

Change to:
PHP Code:

<?php 
chdir
("/home/linguami/public_html/forum");
include(
"./global.php"); 
....


Mile-O-Phile 03-18-2005 11:39 AM

Quote:

Originally Posted by MarcoH64
Change to:
PHP Code:

<?php 
chdir
("/home/linguami/public_html/forum");
include(
"./global.php"); 
....


Thanks. I've now done that and I'm getting a blank HTML page. I added the world Hello to it like this:

PHP Code:

<?php
chdir
("/home/linguami/public_html/forum"); 
include(
"./global.php");
$admin $_COOKIE['usergroupid'];
?>
<html>
<head>
<title>Example</title>
</head>
<body>
<?php
    
echo "Hello $admin";
?>
</body>
</html>

But the variable $admin isn't getting anything. I know there should be a cookie as I'm logged into my forum at the moment.


All times are GMT. The time now is 03:21 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.01371 seconds
  • Memory Usage 1,755KB
  • 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
  • (7)bbcode_php_printable
  • (4)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