Splitting backend upload code from SpecialUpload.
[lhc/web/wiklou.git] / includes / UploadFromUpload.php
1 <?php
2
3 class UploadFromUpload extends UploadFromBase {
4 function initialize( $tempPath, $fileSize, $fileName ) {
5 $this->mTempPath = $tempPath;
6 $this->mFileSize = $fileSize;
7 $this->mSrcName = $fileName;
8 $this->mSessionKey = false;
9 $this->mStashed = false;
10 $this->mRemoveTempFile = false; // PHP will handle this
11 }
12 }