|
Revision 33422, 0.6 kB
(checked in by ncuesta, 1 year ago)
|
Updated dcWidgetFormFinder widget to improve results display.
|
| Line | |
|---|
| 1 |
<?php |
|---|
| 2 |
|
|---|
| 3 |
|
|---|
| 4 |
|
|---|
| 5 |
|
|---|
| 6 |
|
|---|
| 7 |
class dcWidgetFormSchemaFormatterFinder extends sfWidgetFormSchemaFormatter |
|---|
| 8 |
{ |
|---|
| 9 |
protected |
|---|
| 10 |
$rowFormat = "<div class=\"dc_widget_form_finder_form_row row\">\n %error% <span class=\"dc_widget_form_finder_form_label span4\">%label%</span> <span class=\"span10\">%field%%help%</span>%hidden_fields%</div>\n", |
|---|
| 11 |
$errorRowFormat = "<div>%errors%</div>\n", |
|---|
| 12 |
$helpFormat = '<div class="help">%help%</div>', |
|---|
| 13 |
$decoratorFormat = "<div class=\"dc_widget_form_finder_form_container\">\n %content%</div>"; |
|---|
| 14 |
|
|---|
| 15 |
} |
|---|