Not sure if one way is more "proper" than the other, but here's what you're looking at...
PHP Code:
require_once DIR . '/includes/class_taggablecontent.php';
$taggable = vB_Taggable_Content_Item::create(vB::$vbulletin, $this->content->getContentTypeId(), $this->content->getContentId(), $this->content);
$tag_list = $taggable->fetch_existing_tag_list();
You can look at /includes/class_taggablecontent.php for more information on using the class.