type ) {
default:
case 'group_heading_top':
echo '
' . $this->title . '
';
if ( $this->description != '' ) {
echo '' . $this->description . '
';
}
break;
case 'group_heading':
echo '' . $this->title . '
';
if ( $this->description != '' ) {
echo '' . $this->description . '
';
}
break;
case 'group_heading_message':
echo '' . $this->title . '
';
if ( $this->description != '' ) {
echo '' . $this->description . '
';
}
break;
case 'hr' :
echo '
';
break;
}
}
}