Log in

View Full Version : help with custom template - favorite forums


heller0210
08-25-2010, 08:20 AM
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:

{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

Lynne
08-25-2010, 01:43 PM
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?

heller0210
08-26-2010, 08:47 AM
Hello,

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


// #################### 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(1, 0, $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(-1, 0, 1);
$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

Lynne
08-26-2010, 02:07 PM
If you are writing your own php page, you have no need to include a custom hook - just put your code directly in there.

heller0210
08-26-2010, 02:13 PM
Ok thank you i will try this and post what my results are.

Regards,

chris