Bulk Upload Disabled NEW Bootstrap 5 theme
upload multiple files
HIDE CODE
<?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(false); //Can edit images
//Param 1; true to allow adding images
$xcrud->bulk_image_upload_add(false); //Can add images
//Param 1; true to allow removing images
$xcrud->bulk_image_upload_remove(false); //Can remove images
echo $xcrud->render('edit',3);
?>
Warning: Undefined array key "gallery.title" in /var/www/html/xcrud/demo/xcrud_1_7/xcrud/xcrud.php on line 8034
Warning: Undefined array key "gallery.title" in /var/www/html/xcrud/demo/xcrud_1_7/xcrud/xcrud.php on line 8037
Warning: Undefined array key "gallery.description" in /var/www/html/xcrud/demo/xcrud_1_7/xcrud/xcrud.php on line 8034
Warning: Undefined array key "gallery.description" in /var/www/html/xcrud/demo/xcrud_1_7/xcrud/xcrud.php on line 8037