Skip to content

Commit

Permalink
Merge pull request #269 from nanasess/add-uploadfiletest
Browse files Browse the repository at this point in the history
SC_UploadFile のテストケースを追加
  • Loading branch information
kazumiiiiiiiiiii authored Jun 4, 2019
2 parents 6e32ba7 + 78fc70d commit 4e29f5b
Show file tree
Hide file tree
Showing 2 changed files with 448 additions and 0 deletions.
22 changes: 22 additions & 0 deletions data/class/SC_UploadFile.php
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,9 @@ public function deleteFile($keyname)
}

// 画像を削除する。
/**
* @deprecated 本体で使用されていないため非推奨
*/
public function deleteKikakuFile($keyname)
{
$objImage = new SC_Image_Ex($this->temp_dir);
Expand Down Expand Up @@ -307,6 +310,9 @@ public function setHiddenFileList($arrPOST)
}
}

/**
* @deprecated 本体で使用されていないため非推奨
*/
public function setHiddenKikakuFileList($arrPOST)
{
$cnt = 0;
Expand Down Expand Up @@ -378,6 +384,10 @@ public function getFormDownFile()

return $arrRet;
}

/**
* @deprecated 本体で使用されていないため非推奨
*/
public function getFormKikakuDownFile()
{
$arrRet = array();
Expand Down Expand Up @@ -432,6 +442,9 @@ public function setDBDownFile($arrVal)
}

// DBで保存されたダウンロードファイル名をセットする(setDBDownFileと統合予定)
/**
* @deprecated 本体で使用されていないため非推奨
*/
public function setPostFileList($arrPost)
{
for ($cnt = 0;$cnt < count($this->keyname); $cnt++) {
Expand All @@ -442,6 +455,9 @@ public function setPostFileList($arrPost)
}

// 画像をセットする
/**
* @deprecated 本体で使用されていないため非推奨
*/
public function setDBImageList($arrVal)
{
$cnt = 0;
Expand All @@ -454,6 +470,9 @@ public function setDBImageList($arrVal)
}

// DB上のファイルの内削除要求があったファイルを削除する。
/**
* @deprecated 本体で使用されていないため非推奨
*/
public function deleteDBFile($arrVal)
{
$objImage = new SC_Image_Ex($this->temp_dir);
Expand Down Expand Up @@ -505,6 +524,9 @@ public function checkExists($keyname = '')
}

// 拡大率を指定して画像保存
/**
* @deprecated 本体で使用されていないため非推奨
*/
public function saveResizeImage($keyname, $to_w, $to_h)
{
$path = '';
Expand Down
Loading

0 comments on commit 4e29f5b

Please sign in to comment.