private function DebuggingReviewForm::printConfig in Lightweight Directory Access Protocol (LDAP) 8.3
Returns raw data of configuration.
Parameters
string $configName: Configuration name.
Return value
string Raw configuration data.
1 call to DebuggingReviewForm::printConfig()
- DebuggingReviewForm::buildForm in ldap_help/
src/ Form/ DebuggingReviewForm.php - Form constructor.
File
- ldap_help/
src/ Form/ DebuggingReviewForm.php, line 60
Class
- DebuggingReviewForm
- Form to allow for debugging review.
Namespace
Drupal\ldap_help\FormCode
private function printConfig($configName) {
return '<pre>' . Yaml::encode($this
->config($configName)
->getRawData()) . '</pre>';
}