| Conditions | 2 |
| Paths | 2 |
| Total Lines | 11 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 17 | public function buildValues(PluggableSchemaManagerInterface $schemaManager) { |
||
| 18 | $items = []; |
||
| 19 | foreach (ImageStyleConfig::loadMultiple() as $imageStyle) { |
||
| 20 | $items[$imageStyle->id()] = [ |
||
| 21 | 'value' => $imageStyle->id(), |
||
| 22 | 'name' => $imageStyle->id(), |
||
| 23 | 'description' => $imageStyle->label() |
||
| 24 | ]; |
||
| 25 | } |
||
| 26 | return $items; |
||
| 27 | } |
||
| 28 | |||
| 30 |