Skip to content

Instantly share code, notes, and snippets.

@sanguis
Created July 3, 2012 19:36
Show Gist options
  • Save sanguis/3042311 to your computer and use it in GitHub Desktop.
Save sanguis/3042311 to your computer and use it in GitHub Desktop.
drupul compound hook_field_is_empty() function
<?php
/**
* Implements hook_field_is_empty().
*/
function FOO_contact_field_is_empty($item, $field) {
unset($item['_weight']);
$null = array_filter($item, 'isempty');
return empty($null);
}
function isempty($var) {
return empty($var);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment