Ich versuche in einem eigenen Block auf der linken Seite den expCounter einzubinden und bekomme das nicht hin.
Ich hatte ihn im Portal 1.0.6 in der style/prosilver/template/portal/block/custom_small.html eingebunden, was dann auch einwandfrei klappt:
Code: Select all
<!--version $Id: custom_small.html 660 2010-07-08 20:34:54Z marc1706 $ //-->
{$LR_BLOCK_H_L}<!-- IF $S_BLOCK_ICON --><img src="{T_THEME_PATH}/images/portal/portal_custom.png" width="16" height="16" alt="" /> <!-- ENDIF -->{PORTAL_CUSTOM_SMALL_HEADLINE}{$LR_BLOCK_H_R}
<div class="inner"><span class="portal-corners-top-inner"></span>
<div class="postbody" style="width: 100%">
<div class="content">{COUNTER}</div>
</div>
<span class="portal-corners-bottom-inner"></span></div>
{$LR_BLOCK_F_L}{$LR_BLOCK_F_R}
Code: Select all
//
// chCounter
//
ob_start();
include('/absoluter_pfad_zum_counter_vereichnis/counter.php');
$expCounter = ob_get_contents();
ob_end_clean();
// The following assigns all _common_ variables that may be used at any point in a template.
$template->assign_vars(array(
'SITENAME' => $config['sitename'],
'COUNTER' => $expCounter,
Ich habe keine Ahnung, wie ich das in Portal V2.0.x hinbekommen soll.
Patrick