Im using this in my plugin, but the tab disappeared
Code:
function prepare_output($id = '', $options = array())
{
$this->block_data['custom'] = $this->profile->userinfo['field17'] : "Stuff: $this->profile->userinfo['field17']" ? "Nothing to see here";
}
--------------- Added [DATE]1206807291[/DATE] at [TIME]1206807291[/TIME] ---------------
ok I got it working with this code, but it looks like it wont custom html by my users like this
Code:
$blocklist = array_merge($blocklist, array(
'customcode' => array(
'class' => 'CustomCode',
'title' => 'My Media',
'hook_location' => 'profile_left_last'
)
));
class vB_ProfileBlock_CustomCode extends vB_ProfileBlock
{
var $template_name = 'memberinfo_block_customcode';
function confirm_empty_wrap()
{
return false;
}
function confirm_display()
{
return ($this->block_data['customcode'] != '');
}
function prepare_output($id = '', $options = array())
{
$this->block_data['customcode'] = $this->profile->userinfo['field17'];
}
}
I want my users to insert the embed code for their playlists generated at youtube