Searched refs:sFilePath (Results 1 – 10 of 10) sorted by relevance
/plugin/grensladawritezor/fckeditor/editor/filemanager/upload/php/ |
D | upload.php | 94 $sFilePath = $sServerDir . $sFileName ; variable 97 if ( is_file( $sFilePath ) ) 105 move_uploaded_file( $oFile['tmp_name'], $sFilePath ) ; 107 if ( is_file( $sFilePath ) ) 110 chmod( $sFilePath, 0777 ) ;
|
/plugin/grensladawritezor/fckeditor/editor/filemanager/browser/default/connectors/php/ |
D | commands.php | 187 $sFilePath = $sServerDir . $sFileName ; 189 if ( is_file( $sFilePath ) ) 197 move_uploaded_file( $oFile['tmp_name'], $sFilePath ) ; 199 if ( is_file( $sFilePath ) ) 202 chmod( $sFilePath, 0777 ) ;
|
/plugin/wysiwyg/fckeditor/editor/filemanager/connectors/php/ |
D | commands.php | 208 $sFilePath = $sServerDir . $sFileName ; 210 if ( is_file( $sFilePath ) ) 218 move_uploaded_file( $oFile['tmp_name'], $sFilePath ) ; 220 if ( is_file( $sFilePath ) ) 223 chmod( $sFilePath, 0777 ) ;
|
/plugin/grensladawritezor/fckeditor/editor/filemanager/browser/default/connectors/perl/ |
D | commands.pl | 135 $sFilePath = $sServerDir . $sFileName; 136 if(-e $sFilePath) { 142 copy("$img_dir/$new_fname","$sFilePath"); 143 chmod(0777,$sFilePath);
|
/plugin/wysiwyg/fckeditor/editor/filemanager/connectors/perl/ |
D | commands.pl | 135 $sFilePath = $sServerDir . $sFileName; 136 if(-e $sFilePath) { 142 copy("$img_dir/$new_fname","$sFilePath"); 143 chmod(0777,$sFilePath);
|
/plugin/ckgdoku/fckeditor/editor/filemanager/connectors/php/ |
D | commands.php | 685 $sFilePath = $sServerDir . $sFileName ; 688 if ( is_file( $sFilePath ) ) 701 move_uploaded_file( $oFile['tmp_name'], $sFilePath ) ; 703 if ( is_file( $sFilePath ) ) 718 chmod( $sFilePath, $permissions ) ; 726 if ( file_exists( $sFilePath ) ) 729 …if ( isset( $isImageValid ) && $isImageValid === -1 && IsImageValid( $sFilePath, $sExtension ) ===… 731 @unlink( $sFilePath ) ; 734 else if ( isset( $detectHtml ) && $detectHtml === -1 && DetectHtml( $sFilePath ) === true ) 736 @unlink( $sFilePath ) ;
|
/plugin/fckg/fckeditor/editor/filemanager/connectors/php/ |
D | commands.php | 669 $sFilePath = $sServerDir . $sFileName ; 672 if ( is_file( $sFilePath ) ) 682 move_uploaded_file( $oFile['tmp_name'], $sFilePath ) ; 684 if ( is_file( $sFilePath ) ) 699 chmod( $sFilePath, $permissions ) ; 707 if ( file_exists( $sFilePath ) ) 710 …if ( isset( $isImageValid ) && $isImageValid === -1 && IsImageValid( $sFilePath, $sExtension ) ===… 712 @unlink( $sFilePath ) ; 715 else if ( isset( $detectHtml ) && $detectHtml === -1 && DetectHtml( $sFilePath ) === true ) 717 @unlink( $sFilePath ) ;
|
/plugin/ckgedit/fckeditor/editor/filemanager/connectors/php/ |
D | commands.php | 680 $sFilePath = $sServerDir . $sFileName ; 683 if ( is_file( $sFilePath ) ) 696 move_uploaded_file( $oFile['tmp_name'], $sFilePath ) ; 698 if ( is_file( $sFilePath ) ) 713 chmod( $sFilePath, $permissions ) ; 721 if ( file_exists( $sFilePath ) ) 724 …if ( isset( $isImageValid ) && $isImageValid === -1 && IsImageValid( $sFilePath, $sExtension ) ===… 726 @unlink( $sFilePath ) ; 729 else if ( isset( $detectHtml ) && $detectHtml === -1 && DetectHtml( $sFilePath ) === true ) 731 @unlink( $sFilePath ) ;
|
/plugin/grensladawritezor/fckeditor/editor/filemanager/upload/asp/ |
D | upload.asp | 96 Dim sFilePath variable 97 sFilePath = sServerDir & sFileName 99 If ( oFSO.FileExists( sFilePath ) ) Then 104 oUploader.SaveAs "NewFile", sFilePath
|
/plugin/wysiwyg/fckeditor/editor/filemanager/connectors/asp/ |
D | commands.asp | 173 Dim sFilePath variable 174 sFilePath = sServerDir & sFileName 176 If ( oFSO.FileExists( sFilePath ) ) Then 181 oUploader.SaveAs "NewFile", sFilePath
|