You are here

function money_content_is_empty in Money field 6

Implementation of hook_content_is_empty().

File

./money.module, line 77
This module defines the Money CCK field.

Code

function money_content_is_empty($item, $field) {
  return !is_numeric($item['amount']);
}