I'm making headway!
Code:
$blocklist = array_merge($blocklist, array(
'resume' => array(
'class' => 'Resume',
'title' => 'Resume',
'hook_location' => 'profile_left_last'
)
));
class vB_ProfileBlock_resume extends vB_ProfileBlock
{
var $template_name = 'memberinfo_block_resume';
function confirm_empty_wrap()
{
return false;
}
function confirm_display()
{
return ($this->block_data['resume'] != '');
}
function prepare_output($id = '', $options = array())
{
global $db;
$results = $db->query_read("SELECT output FROM " . TABLE_PREFIX . "formresults WHERE userid = '$bbuserinfo[userid]' AND title = 'Resume' ");
$this->block_data['resume'] = $results;
}
}
That get's no errors in the header, adds the Resume Tab to the profile and data is displayed in the content portion of the tab. The data it's displaying is confusing the heck out of me, but it's still a great leap forward for me I think.
Resource id #73 (the number changes with each member) is being generated in the tab's content portion. Still looking into this.