You are here

function _deploy_get_php_encryption_state in Deploy - Content Staging 7.3

Get default php encryption state.

3 calls to _deploy_get_php_encryption_state()
deploy_ui_endpoint::edit_form_authenticator_submit in modules/deploy_ui/plugins/export_ui/deploy_ui_endpoint.class.php
Authenticator form submit handler.
_deploy_encrypt in ./deploy.module
Centralize method for handling encryption.
_deploy_encrypt_endpoints in ./deploy.module
Helper function to encrypt existing endpoints username & password.

File

./deploy.module, line 888
Deploy module functions.

Code

function _deploy_get_php_encryption_state() {
  if (variable_get('deploy_php_encryption_state')) {
    return TRUE;
  }
  return FALSE;
}