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: sfWidgetFormSchemaFormatterTable.class.php 5995 2007-11-13 15:50:03Z fabien $
- */
- class sfWidgetFormSchemaFormatterTable extends sfWidgetFormSchemaFormatter
- {
- protected
- $rowFormat = "<tr>\n <th>%label%</th>\n <td>%error%%field%%help%%hidden_fields%</td>\n</tr>\n",
- $errorRowFormat = "<tr><td colspan=\"2\">\n%errors%</td></tr>\n",
- $helpFormat = '<br />%help%',
- $decoratorFormat = "<table>\n %content%</table>";
- }
|