You are here

public function EntityformType::getModuleSettings in Entityform 8.3

Same name and namespace in other branches
  1. 8.2 lib/Drupal/entityform/Entity/EntityformType.php \Drupal\entityform\Entity\EntityformType::getModuleSettings()

File

src/Entity/EntityformType.php, line 133
Contains \Drupal\entityform\Entity\EntityformType.

Class

EntityformType
Defines the Entityform type configuration entity.

Namespace

Drupal\entityform\Entity

Code

public function getModuleSettings($module) {
  if (isset($this->settings[$module]) && is_array($this->settings[$module])) {
    return $this->settings[$module];
  }
  return array();
}