You are here

function _acquia_lift_get_context_options in Acquia Lift Connector 7.3

Gets all options for mappable contexts

Return value

array An array of options keyed by the context type

1 call to _acquia_lift_get_context_options()
acquia_lift_get_grouped_context_options in ./acquia_lift.module

File

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

Code

function _acquia_lift_get_context_options() {
  $contexts = array(
    'taxonomy_context' => _acquia_lift_get_taxonomy_context_options(),
  );
  return array_filter($contexts);
}