Searched refs:FileTypesAbsolutePath (Results 1 – 7 of 7) sorted by relevance
/plugin/wysiwyg/fckeditor/editor/filemanager/connectors/py/ |
H A D | config.py | 70 FileTypesPath = {}; FileTypesAbsolutePath = {}; variable 112 FileTypesAbsolutePath['File'] = (not UserFilesAbsolutePath == '') and (UserFilesAbsolutePath + 'fi… 114 QuickUploadAbsolutePath['File'] = FileTypesAbsolutePath['File'] 119 FileTypesAbsolutePath['Image'] = (not UserFilesAbsolutePath == '') and UserFilesAbsolutePath + 'ima… 121 QuickUploadAbsolutePath['Image']= FileTypesAbsolutePath['Image'] 126 FileTypesAbsolutePath['Flash'] = ( not UserFilesAbsolutePath == '') and UserFilesAbsolutePath + 'fl… 128 QuickUploadAbsolutePath['Flash']= FileTypesAbsolutePath['Flash'] 133 FileTypesAbsolutePath['Media'] = ( not UserFilesAbsolutePath == '') and UserFilesAbsolutePath + 'me… 135 QuickUploadAbsolutePath['Media']= FileTypesAbsolutePath['Media']
|
H A D | connector.py | 73 self.userFilesFolder = Config.FileTypesAbsolutePath[resourceType]
|
/plugin/wysiwyg/fckeditor/editor/filemanager/connectors/cfm/ |
H A D | config.cfm | 74 // - FileTypesAbsolutePath: the physical path to the above folder. It must be 99 Config.FileTypesAbsolutePath = StructNew() ; 106 …Config.FileTypesAbsolutePath["File"] = iif( Config.ServerPath eq "", de(""), de(Config.ServerPath… 108 Config.QuickUploadAbsolutePath["File"] = Config.FileTypesAbsolutePath["File"] ; 113 …Config.FileTypesAbsolutePath["Image"] = iif( Config.ServerPath eq "", de(""), de(Config.ServerPat… 115 Config.QuickUploadAbsolutePath["Image"] = Config.FileTypesAbsolutePath["Image"] ; 120 …Config.FileTypesAbsolutePath["Flash"] = iif( Config.ServerPath eq "", de(""), de(Config.ServerPat… 122 Config.QuickUploadAbsolutePath["Flash"] = Config.FileTypesAbsolutePath["Flash"] ; 127 …Config.FileTypesAbsolutePath["Media"] = iif( Config.ServerPath eq "", de(""), de(Config.ServerPat… 129 Config.QuickUploadAbsolutePath["Media"] = Config.FileTypesAbsolutePath["Media"] ;
|
H A D | cf_io.cfm | 58 <cfif isDefined( "REQUEST.Config.FileTypesAbsolutePath" ) 59 and structkeyexists( REQUEST.Config.FileTypesAbsolutePath, ARGUMENTS.resourceType ) 60 and Len( REQUEST.Config.FileTypesAbsolutePath[ARGUMENTS.resourceType] )> 61 <cfreturn REQUEST.Config.FileTypesAbsolutePath[ARGUMENTS.resourceType]>
|
H A D | cf5_connector.cfm | 109 <cfif isDefined( "Config.FileTypesAbsolutePath" ) 110 and structkeyexists( Config.FileTypesAbsolutePath, url.type ) 111 and Len( Config.FileTypesAbsolutePath[url.type] )> 113 <cfset userFilesServerPath = Config.FileTypesAbsolutePath[url.type] & url.currentFolder>
|
H A D | cf5_upload.cfm | 140 <cfif isDefined( "Config.FileTypesAbsolutePath" ) 141 and structkeyexists( Config.FileTypesAbsolutePath, url.type ) 142 and Len( Config.FileTypesAbsolutePath[url.type] )> 143 <cfset userFilesServerPath = Config.FileTypesAbsolutePath[url.type] & url.currentFolder>
|
/plugin/wysiwyg/fckeditor/editor/filemanager/connectors/asp/ |
H A D | config.asp | 70 ' - FileTypesAbsolutePath: the physical path to the above folder. It must be
|