Clinicians
Clinicians will work together to provide services through the field services unit. Our veterinarians include those with broad experience and expertise as well as clinicians with species-specific expertise.
PHP_START
function getPeopleBySpecialty() {
= new EntityFieldQuery();
(‘entity_type’, ‘node’)
->entityCondition(‘bundle’, ‘person’)
->propertyCondition(‘status’, NODE_PUBLISHED)
->fieldCondition(‘field_specialties’, ‘tid’, )
->fieldOrderBy(‘field_c_last_name’, ‘value’, ‘ASC’);
= ();
= array();
if(\[‘node’\]’ != null) {
= array_keys(\[‘node’\]’);
= entity_load(‘node’, );
}
return ;
}
= array(‘Food Animal & Camelid Field Services’ => getPeopleBySpecialty(78), ‘Equine Field Services’ => getPeopleBySpecialty(79), ‘Staff’ => getPeopleBySpecialty(280));
foreach( as => ){
echo “
Name | Phone | Room | ||
---|---|---|---|---|
“; echo ; echo “ |
, |
“;
}
PHP_END