You are here

function _content_language_access_get_config in Content Language Access 6

Same name and namespace in other branches
  1. 7 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/settings/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
Access callback for node/%node.

File

./content_language_access.module, line 164
This module provides access checking of the current language of the site with the language of the content (language neutral are not considered).

Code

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