| Conditions | 1 |
| Paths | 1 |
| Total Lines | 14 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 38 | public function updateCMSFields(FieldList $fields) |
||
| 39 | { |
||
| 40 | $fields->addFieldsToTab( |
||
| 41 | 'Root.Main', |
||
| 42 | [ |
||
| 43 | NumericField::create('Weight') |
||
| 44 | ->setTitle(_t('ProductPage.Weight', 'Weight')) |
||
| 45 | ->setDescription(_t( |
||
| 46 | 'ProductPage.WeightDescription', |
||
| 47 | 'Base weight for this product in lbs. Can be modified using Product Options' |
||
| 48 | )) |
||
| 49 | ->setScale(2), |
||
| 50 | ], |
||
| 51 | 'Content' |
||
| 52 | ); |
||
| 67 |