You are here

function _content_language_access_get_config in Content Language Access 7

Same name and namespace in other branches
  1. 6 content_language_access.module \_content_language_access_get_config()

Helper to get all the config available for the module.

Return value

array All configuration from admin/config/regional/content_language_access page.

2 calls to _content_language_access_get_config()
content_language_access_admin_form in ./content_language_access.admin.inc
Administration form for content language access module.
content_language_access_node_access in ./content_language_access.module
Implements hook_node_access().

File

./content_language_access.module, line 102
Include language permissions to modify content.

Code

function _content_language_access_get_config() {
  return variable_get('content_language_access', array());
}