I am looking for a function which will list out the content types which a specific term (tid) can be applied to.

There doesn't seem to be a direct way to do it from http://api.drupal.org/api/search/6/taxonomy.

Any ideas?

link|improve this question

38% accept rate
feedback

1 Answer

up vote 2 down vote accepted

No, there doesn't seem to be one. You should be able to use this query, though.

$c = db_query(db_rewrite_sql("SELECT v.* FROM {vocabulary} v INNER JOIN {vocabulary_node_types} n ON v.vid = n.vid WHERE n.type = '%s' ORDER BY v.weight, v.name", 'v', 'vid'), $node->type);

Source: http://api.drupal.org/api/drupal/modules--taxonomy--taxonomy.module/function/taxonomy_form_alter/6

Or a simplified version of that, if you for example only need the vid.

link|improve this answer
Thanks. I think that's exactly what I need. – JK Thng Feb 22 '11 at 3:02
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.