i want the member files to be in a tab on vb 3.7.0
basically i need to know what goes here
look at the code and you will see what im talking about
HTML Code:
$blocklist = array_merge($blocklist, array(
'mymodification' => array(
'class' => 'Downloads',
'title' => 'My Files',
'hook_location' => 'profile_left_last'
)
));
class vB_ProfileBlock_Downloads extends vB_ProfileBlock
{
var $template_name = 'memberinfo_block_Downloads';
function confirm_empty_wrap()
{
return false;
}
function confirm_display()
{
return ($this->block_data['Downloads'] != '');
}
function prepare_output($id = '', $options = array())
{
$this->block_data['Downloads'] = '
WHAT GOES HERE???
';
}
}