DEMO SITE v1.7.31

Uploads demo Default theme

Demo of file and images uploading

HIDE CODE
<?php
$xcrud = Xcrud::get_instance();
$xcrud->table('uploads');

// simple file upload
$xcrud->change_type('simple_upload', 'file', '', array('not_rename'=>true));

// simple image upload
$xcrud->change_type('simple_image', 'image');

// image upload with resizing
$xcrud->change_type('auto_resize', 'image', '', array('width' => 200, 'height' => 200));

// image upload with resizing
$xcrud->change_type('auto_crop', 'image', '', array(
    'width' => 200,
    'height' => 200,
    'crop' => true));

// image upload with manual crop
$xcrud->change_type('manual_crop', 'image', '', array('manual_crop' => true));

// image upload with manual crop and resizing
$xcrud->change_type('manual_crop_2', 'image', '', array(
    'width' => 200,
    'height' => 200,
    'manual_crop' => true));

// image upload with manual crop and fixed ratio
$xcrud->change_type('manual_crop_3', 'image', '', array('ratio' => 0.5, 'manual_crop' => true));

// image upload with watermark
$xcrud->change_type('watermark', 'image', '', array('width' => 400, 'watermark' => '../demos/assets/xCRUD.png'));

// image upload with watermark position (%-left, %-top)
$xcrud->change_type('watermark_position', 'image', '', array('watermark' => '../demos/assets/xCRUD.png',
        'watermark_position' => array(10, 95)));

// image upload with thumbs
$xcrud->change_type('image_with_thumbs', 'image', '', array('thumbs' => 
    array(
        array(
            'width' => '300',
            'marker' => '_th',
            'watermark' => '../demos/assets/xCRUD.png'), 
        array(
            'width' => 100,
            'height' => 100,
            'crop' => true,
            'folder' => 'thumbs')
        )));

echo $xcrud->render('edit', 14);
?>

Warning: Undefined array key "uploads.simple_upload" in /var/www/html/xcrud/demo/xcrud_1_7/xcrud/xcrud.php on line 8057

Warning: Undefined array key "uploads.simple_upload" in /var/www/html/xcrud/demo/xcrud_1_7/xcrud/xcrud.php on line 8060

Warning: Undefined array key "uploads.simple_image" in /var/www/html/xcrud/demo/xcrud_1_7/xcrud/xcrud.php on line 8057

Warning: Undefined array key "uploads.simple_image" in /var/www/html/xcrud/demo/xcrud_1_7/xcrud/xcrud.php on line 8060

Warning: Undefined array key "uploads.auto_resize" in /var/www/html/xcrud/demo/xcrud_1_7/xcrud/xcrud.php on line 8057

Warning: Undefined array key "uploads.auto_resize" in /var/www/html/xcrud/demo/xcrud_1_7/xcrud/xcrud.php on line 8060

Warning: Undefined array key "uploads.auto_crop" in /var/www/html/xcrud/demo/xcrud_1_7/xcrud/xcrud.php on line 8057

Warning: Undefined array key "uploads.auto_crop" in /var/www/html/xcrud/demo/xcrud_1_7/xcrud/xcrud.php on line 8060

Warning: Undefined array key "uploads.manual_crop" in /var/www/html/xcrud/demo/xcrud_1_7/xcrud/xcrud.php on line 8057

Warning: Undefined array key "uploads.manual_crop" in /var/www/html/xcrud/demo/xcrud_1_7/xcrud/xcrud.php on line 8060

Warning: Undefined array key "uploads.manual_crop_2" in /var/www/html/xcrud/demo/xcrud_1_7/xcrud/xcrud.php on line 8057

Warning: Undefined array key "uploads.manual_crop_2" in /var/www/html/xcrud/demo/xcrud_1_7/xcrud/xcrud.php on line 8060

Warning: Undefined array key "uploads.manual_crop_3" in /var/www/html/xcrud/demo/xcrud_1_7/xcrud/xcrud.php on line 8057

Warning: Undefined array key "uploads.manual_crop_3" in /var/www/html/xcrud/demo/xcrud_1_7/xcrud/xcrud.php on line 8060

Warning: Undefined array key "uploads.watermark" in /var/www/html/xcrud/demo/xcrud_1_7/xcrud/xcrud.php on line 8057

Warning: Undefined array key "uploads.watermark" in /var/www/html/xcrud/demo/xcrud_1_7/xcrud/xcrud.php on line 8060

Warning: Undefined array key "uploads.watermark_position" in /var/www/html/xcrud/demo/xcrud_1_7/xcrud/xcrud.php on line 8057

Warning: Undefined array key "uploads.watermark_position" in /var/www/html/xcrud/demo/xcrud_1_7/xcrud/xcrud.php on line 8060

Warning: Undefined array key "uploads.image_with_thumbs" in /var/www/html/xcrud/demo/xcrud_1_7/xcrud/xcrud.php on line 8057

Warning: Undefined array key "uploads.image_with_thumbs" in /var/www/html/xcrud/demo/xcrud_1_7/xcrud/xcrud.php on line 8060

Uploads - Edit

Simple Upload
no file Add file
Simple Image
no image Add image
Auto Resize
no image Add image
Auto Crop
no image Add image
Manual Crop
no image Add image
Manual Crop 2
no image Add image
Manual Crop 3
no image Add image
Watermark
no image Add image
Watermark Position
no image Add image
Image With Thumbs
no image Add image