You are here

function _acquia_lift_libraries_filter_null_values in Acquia Lift Connector 7

Same name and namespace in other branches
  1. 7.2 acquia_lift.module \_acquia_lift_libraries_filter_null_values()

Determines if an item is empty or not.

Parameters

string $item: A version number string.

Return value

boolean Whether the $item's value is empty or not.

1 string reference to '_acquia_lift_libraries_filter_null_values'
_acquia_lift_libraries_get_version in ./acquia_lift.module
Determines the version of a library.

File

./acquia_lift.module, line 2028
acquia_lift.module Provides Acquia Lift-specific personalization functionality.

Code

function _acquia_lift_libraries_filter_null_values($item) {
  return !empty($item);
}