You are here

function lingotek_node_based_trans_ready in Lingotek Translation 7.7

Same name and namespace in other branches
  1. 7.5 lingotek.util.inc \lingotek_node_based_trans_ready()
  2. 7.6 lingotek.util.inc \lingotek_node_based_trans_ready()

Determine whether site has the required dependencies for node-based translation

Return value

boolean

1 call to lingotek_node_based_trans_ready()
lingotek_admin_profile_form in ./lingotek.admin.inc
Content defaults Form

File

./lingotek.util.inc, line 2408
Utility functions.

Code

function lingotek_node_based_trans_ready() {
  if (module_exists('translation') && module_exists('i18n_node')) {
    return TRUE;
  }
  return FALSE;
}