You are here

function matrix_content_is_empty in Matrix field 6

Same name and namespace in other branches
  1. 6.2 matrix.module \matrix_content_is_empty()

Implementation of hook_content_is_empty(). Since this module does not allow multiple values, this function serves no purpose.

File

./matrix.module, line 70
Defines simple matrix field types.

Code

function matrix_content_is_empty($item, $field) {
  return FALSE;
}