Go Back   vb.org Archive > vBulletin 4 Discussion > vB4 Programming Discussions
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Display Modes
  #1  
Old 08-25-2010, 08:20 AM
heller0210 heller0210 is offline
 
Join Date: Mar 2010
Posts: 3
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default help with custom template - favorite forums

hello,

I already asked this question on the german forum, but nobody seemed to be able to help me. Maybe you can.
Here's my problem: I want to list all favorite forums (those that you can see in the usercp) in a custom template. Somehow the vb: code doesn't work in my template like it does in the usercp.

Do you have any idea what I'm missing?

Here is my template:
Code:
{vb:stylevar htmldoctype}
<html xmlns="http://www.w3.org/1999/xhtml" dir="{vb:stylevar textdirection}" lang="{vb:stylevar languagecode}" id="vbulletin_html">
<head>
{vb:raw headinclude}
{vb:raw clientscripts}
<title>{vb:raw vboptions.bbtitle} - {vb:rawphrase forum_favorites}</title>
</head>
<body>

{vb:raw header}
{vb:raw navbar}

{vb:raw template_hook.custom_favorites}


<!-- ############## SUBSCRIBED FORUMS ##############  -->
<div class="block" id="new_subscribed_forums">
	<h2 class="blockhead">{vb:rawphrase forum_favorites}</h2>
	<ol class="blockbody" id="forumlist">
		{vb:raw forumbits}
	</ol>
	{vb:raw forumhome_markread_script}
</div>
<!-- ############## END SUBSCRIBED FORUMS ##############  -->

<div class="block" id="new_subscribed_forums">
	<h2 class="blockhead">{vb:rawphrase forum_favorites}</h2>
	<ol class="blockbody" id="forumlist" style="text-align: center; font-weight: bold; font-size: 13px;">
		<p>Sie haben keine Foren abonniert!</p>
	</ol>
</div>


{vb:raw footer}
</body>
</html>
Any hint would be very much appreciated... I'm stuck with this for a while now and it starts to be really frustrating.



Regards,

chris
Reply With Quote
  #2  
Old 08-25-2010, 01:43 PM
Lynne's Avatar
Lynne Lynne is offline
 
Join Date: Sep 2004
Location: California/Idaho
Posts: 41,180
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

All you've done is post a template which doesn't tell us anything. Where does the template get called? Did you write any custom code to go along with it?
Reply With Quote
  #3  
Old 08-26-2010, 08:47 AM
heller0210 heller0210 is offline
 
Join Date: Mar 2010
Posts: 3
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hello,

the function i mean does already exist in the usercp(screenshot). I want to display the subscribed forums on a different page.

PHP Code:
// #################### DEFINE IMPORTANT CONSTANTS #######################
define('THIS_SCRIPT''custom_favoriten');
define('CSRF_PROTECTION'true);
define('CONTENT_PAGE'false);

// ################### PRE-CACHE TEMPLATES AND DATA ######################
// get special phrase groups
$phrasegroups = array('user''infractionlevel');

// get special data templates from the datastore
$specialtemplates = array(
    
'iconcache',
    
'noavatarperms',
    
'smiliecache',
    
'bbcodecache',
);

// pre-cache templates used by all actions
$globaltemplates = array(
    
// subscribed forums templates
    
'forumhome_forumbit_level1_post',
    
'forumhome_forumbit_level1_nopost',
    
'forumhome_forumbit_level2_post',
    
'forumhome_forumbit_level2_nopost',
    
'forumhome_subforumbit_nopost',
    
'forumhome_subforumbit_post',
    
'forumhome_subforumseparator_nopost',
    
'forumhome_subforumseparator_post',
    
'forumhome_lastpostby',
    
'forumhome_moderator',
    
'forumhome_markread_script',
    
'forumdisplay_loggedinuser'
);

// pre-cache templates used by specific actions
$actiontemplates = array();

// ######################### REQUIRE BACK-END ############################
require_once('./global.php');
require_once(
DIR '/includes/functions_forumlist.php');
require_once(
DIR '/includes/functions_user.php');

// #######################################################################
// ######################## START MAIN SCRIPT ############################
// #######################################################################

($hook vBulletinHook::fetch_hook('custom_favorites')) ? eval($hook) : false;

cache_ordered_forums(10$vbulletin->userinfo['userid']);
$show['forums'] = false;
foreach (
$vbulletin->forumcache AS $forumid => $forum)
{
    if (
$forum['subscribeforumid'] != '')
    {
        
$show['forums'] = true;
    }
}
if (
$show['forums'])
{
    if (
$vbulletin->options['showmoderatorcolumn'])
    {
        
cache_moderators();
    }
    else
    {
        
cache_moderators($vbulletin->userinfo['userid']);
    }
    
fetch_last_post_array();

    
$show['collapsable_forums'] = true;
    
$forumbits construct_forum_bit(-101);
    
$forumhome_markread_script vB_Template::create('forumhome_markread_script')->render();
    if (
$forumshown == 1)
    {
        
$show['forums'] = true;
    }
    else
    {
        
$show['forums'] = false;
    }
}

$templater vB_Template::create('custom_favoriten');
    
$templater->register('forumbits'$forumbits);
    
$templater->register('forumhome_markread_script'$forumhome_markread_script);
print_output($templater->render()); 
I created a custom hook in my template custom_favorites in the hook xml to get the code at the right position in my template.

maybe there is an easier way to get the function into a custom template or even do it without a custom template.

regards

chris
Attached Images
File Type: png ansicht_usercp.png (68.8 KB, 0 views)
Reply With Quote
  #4  
Old 08-26-2010, 02:07 PM
Lynne's Avatar
Lynne Lynne is offline
 
Join Date: Sep 2004
Location: California/Idaho
Posts: 41,180
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

If you are writing your own php page, you have no need to include a custom hook - just put your code directly in there.
Reply With Quote
  #5  
Old 08-26-2010, 02:13 PM
heller0210 heller0210 is offline
 
Join Date: Mar 2010
Posts: 3
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Ok thank you i will try this and post what my results are.

Regards,

chris
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 10:51 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.03550 seconds
  • Memory Usage 2,245KB
  • Queries Executed 14 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (1)ad_showthread_firstpost
  • (1)ad_showthread_firstpost_sig
  • (1)ad_showthread_firstpost_start
  • (1)bbcode_code
  • (1)bbcode_php
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (5)post_thanks_box
  • (5)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (5)post_thanks_postbit_info
  • (5)postbit
  • (1)postbit_attachment
  • (5)postbit_onlinestatus
  • (5)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.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/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.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
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • postbit_attachment
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete