How upload file in Module

go to module/<module_name>/vardefs.php
add in fields array eg,

 'fields'=>array(
 // for image field
'photo' => array(
'name' => 'photo',
'vname' => 'LBL_PHOTO',
'type' => 'image',
'massupdate' => false,
'comments' => '',
'help' => '',
'importable' => false,
'reportable' => true,
'len' => 255,
'dbType' => 'varchar',
'width' => '160',
'height' => '160',
),
// for file
'filename' =>
array(
'name' => 'filename',
'vname' => 'LBL_FILENAME',
'type' => 'file',
'dbType' => 'varchar',
'len' => '255',
'reportable'=>true,
'comment' => 'File name associated with the note (attachment)',
'importable' => false,
),
)

step 2 . do repair and rebuild and execute script query show in bottom of quick repair and rebuild page.
step3 . add these field in editview and detail view from studio

upload image and it will show in both view with remove buttom

1 Like