vb.org Archive

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

Dean C 12-10-2002 05:34 PM

Questions :)
 
Is it possible to structure a function like this:

PHP Code:

if (yadayada) {
$variable la de da;
} else if(
condtitional) {
$variable scooby doo;
} else {
$variable wohhooo;} 

????

- miSt

NTLDR 12-10-2002 06:21 PM

Note sure exactly what your asking.

BTW, thats an expression, not a function ;)

Xenon 12-10-2002 07:41 PM

NTLDR is right ;)

nevertheless the structure of it will work perfect :)

Dean C 12-11-2002 06:21 PM

Ahhh i'm learning the words hehe :)

Can't wait to start my course in September next year :)

PHP Code:

if (ismoderator($thread['forumid']) or $post['userid'] == $bbuserinfo['userid']) {
eval(
"\$post[editreport] = \"".gettemplate('postbit_edit2')."\";");
} else if(
$post[usergroupid] == 6) {
eval(
"\$post[editreport] = \"".gettemplate('postbit_report2')."\";");
} else {
eval(
"\$post[editreport] = \"".gettemplate('postbit_report2')."\";");} 

So would that expression work?

- miSt

NTLDR 12-11-2002 08:19 PM

Provided both $thread['forumid'] and $post['userid'] are set I can't see any reason why it wouldn't work :)

Dean C 12-12-2002 08:12 AM

Its the basic structure im worried about

I'll give it a try...

- miSt

Chris M 12-17-2002 11:20 AM

I'm not entirely sure, but I wasn't aware that the "getpostbit" function store's what the usergroupid of the poster is...

If that is so, then try the following code:

Code:

if (ismoderator($thread['forumid']) or $post['userid'] == $bbuserinfo['userid']) {
eval("\$post[editreport] = \"".gettemplate('postbit_edit2')."\";");
} elseif ($bbuserinfo[usergroupid] == "6") {
eval("\$post[editreport] = \"".gettemplate('postbit_report2')."\";");
} else {
eval("\$post[editreport] = \"".gettemplate('postbit_report2')."\";");}

:)

Satan


All times are GMT. The time now is 08:15 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.00935 seconds
  • Memory Usage 1,726KB
  • 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
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (7)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
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete