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 ImageUploadField extends Input {
19
20
21 public function printField() {
22 echo '<div class="image-upload">';
23 echo '<br/>';
24 echo '</div>';
25 }
26
27 private function add_scripts() {
28
29 }
30
31 }
32
33 ?>