1 <?php
2
3 /*
4 * To change this license header, choose License Headers in Project Properties.
5 * To change this template file, choose Tools | Templates
6 * and open the template in the editor.
7 */
8
9 namespace nk2580\wordsmith\Inputs\Fields;
10
11 use nk2580\wordsmith\Inputs\Input as Input;
12
13 /**
14 * Description of TextField
15 *
16 * @author accounts
17 */
18 class FileUploadField extends Input {
19
20 public function printField() {
21 echo '<div class="image-upload">';
22 echo '<br/>';
23 echo '</div>';
24 }
25
26 private function add_scripts() {
27
28 }
29
30 }
31