Drag and Drop Upload NEW Bootstrap 4.5 theme
upload multiple files with drag and drop capabilities
HIDE CODE
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | <?php $xcrud = Xcrud::get_instance(); $xcrud ->table( 'gallery' ); $xcrud ->fields( 'title,description' ); $xcrud ->change_type( "description" , "textarea" ); //Bulk image configuration; //Param 1; true to activate upload //Param 2; Path to store image $xcrud ->bulk_image_upload_active(true, "gallery1" ); //Param 1; true to allow editing $xcrud ->bulk_image_upload_edit(true); //Can edit images //Param 1; true to allow adding images $xcrud ->bulk_image_upload_add(true); //Can add images //Param 1; true to allow removing images $xcrud ->bulk_image_upload_remove(true); //Can remove images $xcrud ->set_bulk_select(false, 'id' , '=' , '3' ); $xcrud ->unset_remove(true, 'id' , '=' , '3' ); echo $xcrud ->render( 'edit' ,3); ?> |