Skip to content

Instantly share code, notes, and snippets.

@EclipseGc
Created August 17, 2012 15:49
Show Gist options
  • Save EclipseGc/3380042 to your computer and use it in GitHub Desktop.
Save EclipseGc/3380042 to your computer and use it in GitHub Desktop.
$query->entityCondition('entity_type', 'node')
->entityCondition('bundle', 'faculty')
->propertyCondition('status', 1)
->fieldCondition('field_person_record', 'entity_id', arg(1), '=');
$result = $query->execute();
if (isset($result['node'])) {
return FALSE;
}
return TRUE;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment