If a description is not provided use form label

It would be nice if there was no description the form label was used instead. In the future I think it would be even better to have the label as an header, and the description as 'additional' instructions.
This commit is contained in:
gnat42 2014-07-03 13:34:07 -06:00
parent 54819590f2
commit 48e7bd2616

View File

@ -187,7 +187,7 @@ class FormTypeParser implements ParserInterface
'default' => null, 'default' => null,
'subType' => $subType, 'subType' => $subType,
'required' => $config->getRequired(), 'required' => $config->getRequired(),
'description' => $config->getAttribute('description'), 'description' => ($config->getOption('description')) ? $config->getOption('description'):$config->getOption('label'),
'readonly' => $config->getDisabled(), 'readonly' => $config->getDisabled(),
'children' => $children, 'children' => $children,
); );
@ -205,7 +205,7 @@ class FormTypeParser implements ParserInterface
'actualType' => 'string', 'actualType' => 'string',
'default' => $config->getData(), 'default' => $config->getData(),
'required' => $config->getRequired(), 'required' => $config->getRequired(),
'description' => $config->getAttribute('description'), 'description' => ($config->getOption('description')) ? $config->getOption('description'):$config->getOption('label'),
'readonly' => $config->getDisabled(), 'readonly' => $config->getDisabled(),
); );
} }
@ -221,7 +221,7 @@ class FormTypeParser implements ParserInterface
'subType' => $subType, 'subType' => $subType,
'default' => $config->getData(), 'default' => $config->getData(),
'required' => $config->getRequired(), 'required' => $config->getRequired(),
'description' => $config->getAttribute('description'), 'description' => ($config->getOption('description')) ? $config->getOption('description'):$config->getOption('label'),
'readonly' => $config->getDisabled(), 'readonly' => $config->getDisabled(),
); );