You are here

function datex_views_data_alter in Datex 7.2

Same name and namespace in other branches
  1. 7.3 datex.module \datex_views_data_alter()
  2. 7 datex.views.inc \datex_views_data_alter()

Implements hook_views_data_alter().

For swapping out date handlers with our handler.

File

./datex.views.inc, line 22

Code

function datex_views_data_alter(&$data) {

  // In patching mode, All is handled with datex_format hook, Nothing to do
  // here.
  if (_datex_cfg('mode') == DATEX_NONPATCHING_MODE) {
    _datex_views_data_alter_recurse($data);
  }
}