| Conditions | 1 |
| Paths | 1 |
| Total Lines | 15 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 27 | public function configureOptions(OptionsResolver $resolver) |
||
| 28 | { |
||
| 29 | $resolver->setDefined(array( |
||
| 30 | 'default_image', |
||
| 31 | 'img_width', |
||
| 32 | 'img_height' |
||
| 33 | )); |
||
| 34 | |||
| 35 | $resolver->setDefaults( |
||
| 36 | array( |
||
| 37 | 'default_image' => 'bundles/jbfileuploader/img/default.png', |
||
| 38 | 'loading_file' => 'bundles/jbfileuploader/img/ajax-loader.gif', |
||
| 39 | ) |
||
| 40 | ); |
||
| 41 | } |
||
| 42 | |||
| 68 |