You are here

function _acquia_lift_get_mapping_callbacks in Acquia Lift Connector 7.3

Gets all the callbacks for finding the mapped value of a context type. The callback receives the the node and the mapped value.

Return value

array An array of callables.

1 call to _acquia_lift_get_mapping_callbacks()
_acquia_lift_get_mapped_context in ./acquia_lift.context.inc
Gets the mapped context for the current node including field mappings and udf mappings.

File

./acquia_lift.context.inc, line 28
acquia_lift.context.inc Provides functions needed for handling visitor contexts.

Code

function _acquia_lift_get_mapping_callbacks() {
  return array(
    'taxonomy_context' => '_acquia_lift_get_mapped_taxonomy_context',
  );
}