Ansel_Api::postBatchUpload PHP Method

postBatchUpload() public method

Notify Ansel that a group of images has just been uploaded. Used for when the postupload hook should be called with a group of recently uploaded images, as opposed to calling it once after each image is saved.
public postBatchUpload ( array $image_ids )
$image_ids array An array of image ids.
    public function postBatchUpload(array $image_ids)
    {
        try {
            Horde::callHook('postupload', array($image_ids), 'ansel');
        } catch (Horde_Exception_HookNotSet $e) {
        }
    }