123456789101112131415161718192021222324252627 |
- <?php
- /*
- * This file is part of the symfony package.
- * (c) Fabien Potencier <fabien.potencier@symfony-project.com>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
- /**
- *
- *
- * @package symfony
- * @subpackage widget
- * @author Fabien Potencier <fabien.potencier@symfony-project.com>
- * @version SVN: $Id: sfWidgetFormSchemaFormatterList.class.php 5995 2007-11-13 15:50:03Z fabien $
- */
- 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>";
- }
|