Created
July 3, 2012 19:36
-
-
Save sanguis/3042311 to your computer and use it in GitHub Desktop.
drupul compound hook_field_is_empty() function
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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