the article lynne has point me to is working.
the next thing if i called the page direct
http://localhost/forums/member.php?8...mymodification there is an empty page displayd.
if i go to members page itself then click on the mymodification tab the content is displayed, what could be wrong.
this is the code i have this far. the output needs to be formated and there needs to be a page counter so a lot of work to do.
PHP Code:
$blocklist = array_merge($blocklist, array(
'mymodification' => array(
'class' => 'MyModification',
'title' => 'Bijlagen',
'hook_location' => 'profile_left_last'
)
));
class vB_ProfileBlock_MyModification extends vB_ProfileBlock
{
var $template_name = 'memberinfo_block_mymodification';
function confirm_empty_wrap()
{
return false;
}
function confirm_display()
{
return ($this->block_data['mymodification'] != '');
}
function prepare_output($id = '', $options = array())
{
$output = "thumbnails <br>";
$attachments = mysql_query("SELECT * FROM `vb3_attachment` where `userid`=".$this->profile->userinfo['userid']);
while ($post = mysql_fetch_array($attachments))
{
$output .= "<a target=blank href=attachment.php?attachmentid=".$post['attachmentid'].">";
$output .= "<img border=0 src=attachment.php?attachmentid=".$post['attachmentid']."&thumb=1>";
$output .= "</a><br>" ;
}
$this->block_data['mymodification'] = $output;
}
}