123456789101112131415161718192021222324252627 |
- <?php
- class sfWidgetFormSchemaFormatterList extends sfWidgetFormSchemaFormatter
- {
- protected
- $rowFormat = "<li>\n %error%%label%\n %field%%help%\n%hidden_fields%</li>\n",
- $errorRowFormat = "<li>\n%errors%</li>\n",
- $helpFormat = '<br />%help%',
- $decoratorFormat = "<ul>\n %content%</ul>";
- }
|