如何检查一个术语是否存在规则 - Drupal 7

时间:2011-10-18 06:43:32

标签: drupal drupal-7 drupal-taxonomy drupal-rules

我有一个previous question在这个问题上结合了两个问题......但我觉得我解释得有点模糊......太多的故事......所以我会一次只问一个问题:)

我想知道如何检查Drupal 7中的规则是否存在分类术语。 我想我需要使用自定义PHP规则和本机Drupal函数(类似于check_if_term_exists()?)。

但我似乎无法找到正确的方法。

1 个答案:

答案 0 :(得分:2)

美好而轻松:

$tid = 5; // The term ID, you can't load by term name as such because multiple terms may have the same name within different (and even within the same) vocabularies.
$term = taxonomy_term_load($tid);

if ($term) {
  // The term exists
}
else {
  // The term doesn't exist
}