You are here

function community_tags_condition_is_first_tag in Community Tags 6.2

Rules condition that returns true if the node has not been tagged with the tag term before.

File

community_tags_rules/community_tags_rules.rules.inc, line 102
community_tags_rules.rules.inc

Code

function community_tags_condition_is_first_tag($ctag) {
  return $ctag->date == $ctag->first_tagged;
}