To get it in a template, you shouldn't echo. You need to stuff it into a variable like
$output_list.
PHP Code:
if($vbulletin->options['enabled'] == 1)
{
$items = explode("\n", $vbulletin->options['html']);
$output_list = '<ul>';
foreach($items as $item)
{
$output_list .= '<li>'.$item.'</li>';
}
$output_list .= '</ul>';
}
Then, in your template just put the $output_list variable where you want it to display. Tah-dah! The template engine will just output any variable values if you just call it..
Code:
<if condition="$vbulletin->options[mymod_enabled]">
$output_list
</if>
Can you dig it?