|
Revision 11540, 0.8 kB
(checked in by fabien, 5 years ago)
|
[1.2] added a new choice widget family
|
- Property svn:mime-type set to
text/x-php
- Property svn:eol-style set to
native
- Property svn:keywords set to
Id
|
| Line | |
|---|
| 1 |
<?php |
|---|
| 2 |
|
|---|
| 3 |
|
|---|
| 4 |
|
|---|
| 5 |
|
|---|
| 6 |
|
|---|
| 7 |
|
|---|
| 8 |
|
|---|
| 9 |
|
|---|
| 10 |
|
|---|
| 11 |
|
|---|
| 12 |
|
|---|
| 13 |
|
|---|
| 14 |
|
|---|
| 15 |
|
|---|
| 16 |
|
|---|
| 17 |
|
|---|
| 18 |
|
|---|
| 19 |
class sfWidgetFormPropelChoiceMany extends sfWidgetFormPropelChoice |
|---|
| 20 |
{ |
|---|
| 21 |
|
|---|
| 22 |
* Constructor. |
|---|
| 23 |
* |
|---|
| 24 |
* @see sfWidgetFormPropelChoice |
|---|
| 25 |
*/ |
|---|
| 26 |
protected function configure($options = array(), $attributes = array()) |
|---|
| 27 |
{ |
|---|
| 28 |
parent::configure($options, $attributes); |
|---|
| 29 |
|
|---|
| 30 |
$this->setOption('multiple', true); |
|---|
| 31 |
} |
|---|
| 32 |
} |
|---|
| 33 |
|
|---|