| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| 1 | <?php |
||
| 25 | public function __construct() { |
||
| 26 | |||
| 27 | parent::__construct('create'); |
||
| 28 | |||
| 29 | # Add fields |
||
| 30 | |||
| 31 | $this->addSelect('type', FILEMANAGER_TYPE_DIR, $this->getOptions(), null, ['disabled' => true]); |
||
| 32 | |||
| 33 | $this->addText('name', '', FORM_FIELD_TEXT, CONFIG_FILEMANAGER_NAME_MAX_LENGTH, |
||
| 34 | |||
| 35 | ['placeholder' => Language::get('FILEMANAGER_FIELD_NAME'), 'required' => true]); |
||
| 36 | } |
||
| 37 | } |
||
| 39 |