You are here

function _domain_menus_get_setting in Domain Menus for Domains 9.1.x

Same name and namespace in other branches
  1. 9.x domain_menus.module \_domain_menus_get_setting()
  2. 3.x domain_menus.module \_domain_menus_get_setting()

Helper function to get domain_menus settings by name.

1 call to _domain_menus_get_setting()
domain_menus_domain_insert in ./domain_menus.module
Implements hook_ENTITY_TYPE_insert().

File

./domain_menus.module, line 51
Domain menus implementation through entity create, delete, and access customizations.

Code

function _domain_menus_get_setting($key) {
  return \Drupal::config(DOMAIN_MENUS_SETTINGS)
    ->get($key);
}