You are here

function matrix_content_is_empty in Matrix field 6.2

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

Implementation of hook_content_is_empty().

As this element does not allow multiple values, this function serves no purpose. but as a compulsary hook, it is defined here.

File

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

Code

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