vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB4 General Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=251)
-   -   PHP Widget if User logged in (https://vborg.vbsupport.ru/showthread.php?t=295260)

ptmuldoon 02-18-2013 06:41 PM

PHP Widget if User logged in
 
I'm finally making user of my VB license, and trying to learn how to show some static information on my home/content page to show only when a user is logged in.

I figure the best/easiest would be a php widget. But I can't figure out the proper code/syntax. I thought the below, but it does not work.

Code:

"$output = <if condition="$bbuserinfo['userid']">
you are logged in
<else />
You are not logged in
</if>";


Can anyone help in showing how to use the php widget to show info for only a logged in user? I think it would easier as well to just point this to a separate file on my server with a php include?

--------------- Added [DATE]1361224817[/DATE] at [TIME]1361224817[/TIME] ---------------

Ok, I'm thinking it might be better/easier to modify the templates?

1. Create a new/custom Widget template for the Content/home page
2. And edit the Sidebar template?

I found these conditionals in this post.. Just not really sure what templates I need to edit?
https://vborg.vbsupport.ru/showthrea...ghlight=widget

kh99 02-19-2013 03:29 PM

The problem with the code you posted is that the output of a php widget is not a template, so template conditionals won't work. You can use a php 'if' statement like:

Code:

if ($bbuserinfo['userid']")
{
  $output = "you are logged in";
}
else
{
  $output = "You are not logged in";
}


and the strings can contain html.

Another way would be to use php code to render a template, then you can use template conditionals. I guess it depends on how complex your output will be and whether or not you prefer to use a template for it.


All times are GMT. The time now is 09:09 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.01088 seconds
  • Memory Usage 1,713KB
  • 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
  • (2)bbcode_code_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (2)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