function drupalgap_sdk_installed in DrupalGap 7
Same name and namespace in other branches
- 7.2 drupalgap.module \drupalgap_sdk_installed()
Returns TRUE if the SDK is installed, FALSE otherwise.
1 call to drupalgap_sdk_installed()
- drupalgap_load_settings_as_string in ./
drupalgap.module - Loads the settings.js file as string.
4 string references to 'drupalgap_sdk_installed'
- drupalgap_modules_widget in ./
drupalgap.module - Renders the widget to control the module's for the app from the settings page.
- drupalgap_sdk_form in ./
drupalgap.module - drupalgap_sdk_form_submit in ./
drupalgap.module - drupalgap_uninstall in ./
drupalgap.install - Implements hook_uninstall().
File
- ./
drupalgap.module, line 586 - A module to provide a bridge between Drupal websites and PhoneGap mobile applications.
Code
function drupalgap_sdk_installed() {
return variable_get('drupalgap_sdk_installed', 0);
}