Ignore:
Timestamp:
Aug 17, 2011, 9:56:07 PM (13 years ago)
Author:
plg
Message:

feature 2406 added: if the user wants a new album in the upload form, the album
is created before the start of the upload. The ergonomy is now simpler, the
page is smaller and cleaner.

bug 2373 fixed: now that album is created before upload, uploadify.php gets the
category_id and the level: as soon as it is uploaded (function add_uploaded_file)
the photo gets its final privacy level and is directly associated to the album.
This way, we can have an error on a photo without making orphan all photos of
the same upload group.

feature 2405 added: as soon as a photo is uploaded, its thumbnail is displayed
in the "Uploaded Photos" fieldset, without waiting for other photos to be
uploaded. The latest photos comes first.

I have slighlty changed the integration of colorbox in core. Now we have 2
styles available and by default, we use style2 (overlay in black, title and
control icons outside the popup). It is also used for zooming on bulk manager
in unit mode.

display change: on each uploading photos, instead of showing the transfer
speed, we display the transfer progression in %

bug fixed: the color of the "Start Upload" button was not correct because the
button was not a submit button but a simple type=button.

language: "Upload" button becomes "Start Upload" button.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/admin/include/uploadify/uploadify.php

    r6625 r11962  
    2020$tmp = ob_get_contents();
    2121ob_end_clean();
    22 // error_log($tmp, 3, "/tmp/php-".date('YmdHis').'-'.sprintf('%020u', rand()).".log");
     22error_log($tmp, 3, "/tmp/php-".date('YmdHis').'-'.sprintf('%020u', rand()).".log");
    2323
    2424if ($_FILES['Filedata']['error'] !== UPLOAD_ERR_OK)
     
    4444  $_FILES['Filedata']['tmp_name'],
    4545  $_FILES['Filedata']['name'],
    46   null,
    47   8
     46  array($_POST['category_id']),
     47  $_POST['level']
    4848  );
    4949
     
    6363  );
    6464
     65$query = '
     66SELECT
     67    id,
     68    path,
     69    tn_ext
     70  FROM '.IMAGES_TABLE.'
     71  WHERE id = '.$image_id.'
     72;';
     73$image_infos = pwg_db_fetch_assoc(pwg_query($query));
     74
     75$thumbnail_url = preg_replace('#^'.PHPWG_ROOT_PATH.'#', './', get_thumbnail_url($image_infos));
     76
     77$return = array(
     78  'image_id' => $image_id,
     79  'category_id' => $_POST['category_id'],
     80  'thumbnail_url' => $thumbnail_url,
     81  );
     82
    6583$output = ob_get_contents();
    6684ob_end_clean();
     
    6886{
    6987  add_upload_error($_POST['upload_id'], $output);
     88  $return['error_message'] = $output;
    7089}
    7190
    72 echo "1";
     91echo json_encode($return);
    7392?>
Note: See TracChangeset for help on using the changeset viewer.