I'm trying to get this information to show but for some reason it keeps bringing errors. Any ideas?
Currently my plugin is the default:
PHP Code:
$blocklist = array_merge($blocklist, array(
'mymodification' => array(
'class' => 'MyModification',
'title' => 'My Teams',
'hook_location' => 'profile_right_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())
{
$this->block_data['mymodification'] ='Coming Soon';
}
}
And i'm trying to get the following code in:
PHP Code:
<if condition="!empty($post[nbateam])">
<div>
$vbphrase[my_nbateam]: <img src="$vboptions[bburl]/images/nba/$post[nbateam].gif" border="0" />
</div>
</if>
I put the new code in the 'coming soon' section and all it showed in the new tab was the text $vbphrase[my_nbateam]:
It did not show the image whatsoever.
--------------- Added [DATE]1246493739[/DATE] at [TIME]1246493739[/TIME] ---------------
I've been toying around with every single combination of codes and it keeps only bringing up the text of the coding or error message.
Any assistance would be greatly appreciated.