当前位置: 首页>>代码示例>>PHP>>正文


PHP SC_Utils::checkFileExistsWithInBasePath方法代码示例

本文整理汇总了PHP中SC_Utils::checkFileExistsWithInBasePath方法的典型用法代码示例。如果您正苦于以下问题:PHP SC_Utils::checkFileExistsWithInBasePath方法的具体用法?PHP SC_Utils::checkFileExistsWithInBasePath怎么用?PHP SC_Utils::checkFileExistsWithInBasePath使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在SC_Utils的用法示例。


在下文中一共展示了SC_Utils::checkFileExistsWithInBasePath方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: checkErrorDispFile

 /**
  * 表示するファイルにエラーチェックを行う
  *
  * @param  SC_FormParam $objFormParam SC_FormParam インスタンス
  * @return boolean       $file_check_flg エラーチェックの結果
  */
 public function checkErrorDispFile($objFormParam)
 {
     $file_check_flg = false;
     // FIXME パスのチェック関数が必要
     $file = $objFormParam->getValue('file');
     $path_exists = SC_Utils::checkFileExistsWithInBasePath($file, USER_REALDIR);
     if ($path_exists) {
         $file_check_flg = true;
     }
     return $file_check_flg;
 }
开发者ID:rateon,项目名称:twhk-ec,代码行数:17,代码来源:LC_Page_Admin_Contents_FileView.php

示例2: action

 /**
  * Page のアクション.
  *
  * @return void
  */
 public function action()
 {
     // フォーム操作クラス
     $objFormParam = new SC_FormParam_Ex();
     // パラメーター情報の初期化
     $this->lfInitParam($objFormParam);
     $objFormParam->setParam($this->createSetParam($_POST));
     $objFormParam->convParam();
     // ファイル管理クラス
     $objUpFile = new SC_UploadFile_Ex($objFormParam->getValue('now_dir'), $objFormParam->getValue('now_dir'));
     // ファイル情報の初期化
     $this->lfInitFile($objUpFile);
     // ファイル操作クラス
     $objFileManager = new SC_Helper_FileManager_Ex();
     switch ($this->getMode()) {
         // フォルダ移動
         case 'move':
             $objFormParam = new SC_FormParam_Ex();
             $this->lfInitParamModeMove($objFormParam);
             $objFormParam->setParam($this->createSetParam($_POST));
             $objFormParam->convParam();
             $this->arrErr = $objFormParam->checkError();
             if (SC_Utils_Ex::isBlank($this->arrErr)) {
                 $now_dir = $this->lfCheckSelectDir($objFormParam, $objFormParam->getValue('tree_select_file'));
                 $objFormParam->setValue('now_dir', $now_dir);
             }
             break;
             // ファイル表示
         // ファイル表示
         case 'view':
             $objFormParam = new SC_FormParam_Ex();
             $this->lfInitParamModeView($objFormParam);
             $objFormParam->setParam($this->createSetParam($_POST));
             $objFormParam->convParam();
             $this->arrErr = $objFormParam->checkError();
             if (SC_Utils_Ex::isBlank($this->arrErr)) {
                 if ($this->tryView($objFormParam)) {
                     $pattern = '/' . preg_quote($objFormParam->getValue('top_dir'), '/') . '/';
                     $file_url = htmlspecialchars(preg_replace($pattern, '', $objFormParam->getValue('select_file')));
                     $tpl_onload = "eccube.openWindow('./file_view.php?file=" . $file_url . "', 'user_data', '600', '400');";
                     $this->setTplOnLoad($tpl_onload);
                 }
             }
             break;
             // ファイルダウンロード
         // ファイルダウンロード
         case 'download':
             $objFormParam = new SC_FormParam_Ex();
             $this->lfInitParamModeView($objFormParam);
             $objFormParam->setParam($this->createSetParam($_POST));
             $objFormParam->convParam();
             $this->arrErr = $objFormParam->checkError();
             if (SC_Utils_Ex::isBlank($this->arrErr)) {
                 if (is_dir($objFormParam->getValue('select_file'))) {
                     $disp_error = '※ ディレクトリをダウンロードすることは出来ません。<br/>';
                     $this->setDispError('select_file', $disp_error);
                 } else {
                     $path_exists = SC_Utils_Ex::checkFileExistsWithInBasePath($objFormParam->getValue('select_file'), USER_REALDIR);
                     if ($path_exists) {
                         // ファイルダウンロード
                         $objFileManager->sfDownloadFile($objFormParam->getValue('select_file'));
                         SC_Response_Ex::actionExit();
                     }
                 }
             }
             break;
             // ファイル削除
         // ファイル削除
         case 'delete':
             $objFormParam = new SC_FormParam_Ex();
             $this->lfInitParamModeView($objFormParam);
             $objFormParam->setParam($this->createSetParam($_POST));
             $objFormParam->convParam();
             $this->arrErr = $objFormParam->checkError();
             $path_exists = SC_Utils::checkFileExistsWithInBasePath($objFormParam->getValue('select_file'), USER_REALDIR);
             if (SC_Utils_Ex::isBlank($this->arrErr) && $path_exists) {
                 SC_Helper_FileManager_Ex::deleteFile($objFormParam->getValue('select_file'));
             }
             break;
             // ファイル作成
         // ファイル作成
         case 'create':
             $objFormParam = new SC_FormParam_Ex();
             $this->lfInitParamModeCreate($objFormParam);
             $objFormParam->setParam($this->createSetParam($_POST));
             $objFormParam->convParam();
             $this->arrErr = $objFormParam->checkError();
             if (SC_Utils_Ex::isBlank($this->arrErr)) {
                 if (!$this->tryCreateDir($objFileManager, $objFormParam)) {
                     $disp_error = '※ ' . htmlspecialchars($objFormParam->getValue('create_file'), ENT_QUOTES) . 'の作成に失敗しました。<br/>';
                     $this->setDispError('create_file', $disp_error);
                 } else {
                     $tpl_onload = "alert('フォルダを作成しました。');";
                     $this->setTplOnLoad($tpl_onload);
                 }
//.........这里部分代码省略.........
开发者ID:rateon,项目名称:twhk-ec,代码行数:101,代码来源:LC_Page_Admin_Contents_FileManager.php


注:本文中的SC_Utils::checkFileExistsWithInBasePath方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。