phalcon-uploader icon indicating copy to clipboard operation
phalcon-uploader copied to clipboard

add key info to info list

Open Ma-Mahdi opened this issue 9 years ago • 0 comments

when I have multiple files in a form,I must have known key name of each files. (line ~145 of Uploder.php)

          $this->info[] = [
                    'path'      => $tmp,
                    'directory' => dirname($tmp),
                    'filename'  => $filename,
                    'size'      => $file->getSize(),
                    'key'       => $file->getKey(),
                    'extension' => $file->getExtension(),
                ];

Ma-Mahdi avatar Dec 03 '15 16:12 Ma-Mahdi