You are here

function livechat_configs in LiveChat 8

Same name and namespace in other branches
  1. 8.2 livechat.module \livechat_configs()

LiveChat configurations.

Return value

\Drupal\Core\Config\ImmutableConfig An immutable configuration object.

3 calls to livechat_configs()
livechat_check_visibility in ./livechat.module
Checks whether LiveChat should be visible on a path, according to settings.
livechat_is_installed in ./livechat.module
Checks whether LiveChat is correctly set up.
livechat_page_attachments in ./livechat.module
Implements hook_page_attachments().

File

./livechat.module, line 125
LiveChat module.

Code

function livechat_configs() {
  $configs = \Drupal::config(LIVECHAT_CONFIGURATION_NAME);
  return $configs;
}