Changeset 6220
- Timestamp:
- 11/30/07 01:16:04 (1 year ago)
- Files:
-
- trunk/lib/widget/sfWidgetFormSchema.class.php (modified) (2 diffs)
- trunk/lib/widget/sfWidgetFormSchemaDecorator.class.php (modified) (3 diffs)
- trunk/lib/widget/sfWidgetFormSchemaFormatter.class.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/lib/widget/sfWidgetFormSchema.class.php
r6196 r6220 4 4 * This file is part of the symfony package. 5 5 * (c) Fabien Potencier <fabien.potencier@symfony-project.com> 6 * 6 * 7 7 * For the full copyright and license information, please view the LICENSE 8 8 * file that was distributed with this source code. … … 71 71 72 72 $this->labels = $labels; 73 $this->helps = $helps; 73 74 74 75 $this->addOption('name_format', '%s'); trunk/lib/widget/sfWidgetFormSchemaDecorator.class.php
r5937 r6220 4 4 * This file is part of the symfony package. 5 5 * (c) Fabien Potencier <fabien.potencier@symfony-project.com> 6 * 6 * 7 7 * For the full copyright and license information, please view the LICENSE 8 8 * file that was distributed with this source code. … … 45 45 $this->options = $widget->getOptions(); 46 46 $this->labels = $widget->getLabels(); 47 $this->helps = $widget->getHelps(); 47 48 } 48 49 … … 62 63 $this->widget->setOptions($this->options); 63 64 $this->widget->setLabels($this->labels); 65 $this->widget->setHelps($this->helps); 64 66 65 67 return strtr($this->decorator, array('%content%' => $this->widget->render($name, $values, $attributes, $errors))); trunk/lib/widget/sfWidgetFormSchemaFormatter.class.php
r5995 r6220 4 4 * This file is part of the symfony package. 5 5 * (c) Fabien Potencier <fabien.potencier@symfony-project.com> 6 * 6 * 7 7 * For the full copyright and license information, please view the LICENSE 8 8 * file that was distributed with this source code.