| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 20 | public function Field($properties = []) |
||
| 21 | { |
||
| 22 | $field = parent::Field($properties); |
||
| 23 | |||
| 24 | // Block requirements that cause issues |
||
| 25 | Requirements::block('silverstripe/admin:thirdparty/jquery/jquery.js'); |
||
| 26 | Requirements::block('silverstripe/admin:thirdparty/jquery-ui/jquery-ui.js'); |
||
| 27 | Requirements::block('silverstripe/admin:thirdparty/jquery-entwine/dist/jquery.entwine-dist.js'); |
||
| 28 | |||
| 29 | return $field; |
||
| 30 | } |
||
| 32 |