123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <?php
- class sfWidgetFormTextarea extends sfWidgetForm
- {
-
- protected function configure($options = array(), $attributes = array())
- {
- $this->setAttribute('rows', 4);
- $this->setAttribute('cols', 30);
- }
-
- public function render($name, $value = null, $attributes = array(), $errors = array())
- {
- return $this->renderContentTag('textarea', self::escapeOnce($value), array_merge(array('name' => $name), $attributes));
- }
- }
|