Add missing description to the GeneralConfigPage

refs #7163
This commit is contained in:
Johannes Meyer 2014-09-29 15:28:36 +02:00
parent ab93969944
commit c3e3a4127d
1 changed files with 10 additions and 0 deletions

View File

@ -26,6 +26,16 @@ class GeneralConfigPage extends Form
*/
public function createElements(array $formData)
{
$this->addElement(
'note',
'description',
array(
'value' => t(
'Now please adjust all application and logging related configuration options to fit your needs.'
)
)
);
$appForm = new ApplicationConfigForm();
$this->addElement($appForm->createElements($formData)->getElement('global_modulePath'));