mysite_type_droplet_type($type_key)
plugins/types/droplet.inc, line 596
Helper function to parse the type_key
$type_key The type_key taken from {mysite_content}
The content type (droplet, block, or view)
function mysite_type_droplet_type($type_key) {
$subtype = explode(':', $type_key);
$type = $subtype[0];
return $type;
}