Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
47 | public function getCMSFields() |
||
48 | { |
||
49 | $this->beforeUpdateCMSFields(function (FieldList $fields) { |
||
50 | $fields->addFieldToTab( |
||
51 | 'Root.Main', |
||
52 | UploadField::create('Video') |
||
53 | ->setTitle('Video') |
||
54 | ->setDescription('mp4 format') |
||
55 | ->setAllowedExtensions(['mp4']), |
||
56 | 'Content' |
||
57 | ); |
||
58 | }); |
||
59 | |||
60 | return parent::getCMSFields(); |
||
61 | } |
||
63 |