Home
last modified time | relevance | path

Searched refs:Config (Results 226 – 250 of 261) sorted by path

1234567891011

/plugin/wysiwyg/fckeditor/_samples/cfm/
H A Dsample04_mx.cfm39 var sSkin = editorInstance.Config['SkinPath'] ;
/plugin/wysiwyg/fckeditor/_samples/lasso/
H A Dsample04.lasso39 var sSkin = editorInstance.Config['SkinPath'] ;
/plugin/wysiwyg/fckeditor/_samples/perl/
H A Dsample02.cgi146 $Config{'AutoDetectLanguage'} = "false";
147 $Config{'DefaultLanguage'} = $FORM{'Lang'};
149 $Config{'AutoDetectLanguage'} = "true";
150 $Config{'DefaultLanguage'} = 'en' ;
H A Dsample04.cgi142 $Config{'SkinPath'} = $sBasePath . 'editor/skins/' . &specialchar_cnv( $FORM{'Skin'} ) . '/' ;
/plugin/wysiwyg/fckeditor/_samples/php/
H A Dsample02.php93 $oFCKeditor->Config['AutoDetectLanguage'] = false ;
94 $oFCKeditor->Config['DefaultLanguage'] = $_GET['Lang'] ;
98 $oFCKeditor->Config['AutoDetectLanguage'] = true ;
99 $oFCKeditor->Config['DefaultLanguage'] = 'en' ;
H A Dsample04.php86 …$oFCKeditor->Config['SkinPath'] = $sBasePath . 'editor/skins/' . htmlspecialchars($_GET['Skin']) .…
/plugin/wysiwyg/fckeditor/editor/_source/internals/
H A Dfckconfig.js24 var FCKConfig = FCK.Config = new Object() ;
/plugin/wysiwyg/fckeditor/editor/filemanager/connectors/cfm/
H A Dcf5_connector.cfm107 <cfset resourceTypeUrl = rereplace( replace( Config.FileTypesPath[url.type], fs, "/", "all"), "/$",…
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>
119 <cfset userFilesServerPath = rootPath & Config.FileTypesPath[url.type] & url.currentFolder>
136 <cfelseif isDefined("Config.ConfigAllowedCommands") and not ListFind(Config.ConfigAllowedCommands, …
140 <cfelseif isDefined("Config.ConfigAllowedTypes") and not ListFind(Config.ConfigAllowedTypes, url.ty…
H A Dcf5_upload.cfm60 <cfif isDefined("Config.ConfigAllowedCommands") and not ListFind(Config.ConfigAllowedCommands, url.…
65 <cfif isDefined("Config.ConfigAllowedTypes") and not ListFind(Config.ConfigAllowedTypes, url.type)>
125 <cfif isDefined( "Config.QuickUploadAbsolutePath" )
126 and structkeyexists( Config.QuickUploadAbsolutePath, url.type )
127 and Len( Config.QuickUploadAbsolutePath[url.type] )>
128 <cfset userFilesServerPath = Config.QuickUploadAbsolutePath[url.type] & url.currentFolder>
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>
[all …]
H A Dcf_commands.cfm51 <cfif isDefined( "REQUEST.Config.SecureImageUploads" ) and REQUEST.Config.SecureImageUploads>
62 …<cfif isDefined( "REQUEST.Config.HtmlExtensions" ) and not listFindNoCase( REQUEST.Config.HtmlExte…
H A Dcf_connector.cfm39 <cfif not Config.Enabled>
43 <cfset REQUEST.Config = Config>
H A Dcf_io.cfm39 <cfreturn REQUEST.Config['QuickUploadPath'][ARGUMENTS.resourceType]>
41 <cfreturn REQUEST.Config['FileTypesPath'][ARGUMENTS.resourceType]>
50 <cfif isDefined( "REQUEST.Config.QuickUploadAbsolutePath" )
52 and Len( REQUEST.Config.QuickUploadAbsolutePath[ARGUMENTS.resourceType] )>
53 <cfreturn REQUEST.Config.QuickUploadAbsolutePath[ARGUMENTS.resourceType]>
58 <cfif isDefined( "REQUEST.Config.FileTypesAbsolutePath" )
60 and Len( REQUEST.Config.FileTypesAbsolutePath[ARGUMENTS.resourceType] )>
61 <cfreturn REQUEST.Config.FileTypesAbsolutePath[ARGUMENTS.resourceType]>
143 and listLen( REQUEST.Config.AllowedExtensions[ARGUMENTS.resourceType] )
149 and listLen( REQUEST.Config.DeniedExtensions[ARGUMENTS.resourceType] )
[all …]
H A Dcf_upload.cfm36 <cfset REQUEST.Config = Config>
43 <cfif not Config.Enabled>
H A Dconfig.cfm26 Config = StructNew() ;
105 Config.FileTypesPath["File"] = Config.UserFilesPath & 'file/' ;
106Config.FileTypesAbsolutePath["File"] = iif( Config.ServerPath eq "", de(""), de(Config.ServerPath…
107 Config.QuickUploadPath["File"] = Config.FileTypesPath["File"] ;
112 Config.FileTypesPath["Image"] = Config.UserFilesPath & 'image/' ;
113Config.FileTypesAbsolutePath["Image"] = iif( Config.ServerPath eq "", de(""), de(Config.ServerPat…
114 Config.QuickUploadPath["Image"] = Config.FileTypesPath["Image"] ;
120Config.FileTypesAbsolutePath["Flash"] = iif( Config.ServerPath eq "", de(""), de(Config.ServerPat…
121 Config.QuickUploadPath["Flash"] = Config.FileTypesPath["Flash"] ;
127Config.FileTypesAbsolutePath["Media"] = iif( Config.ServerPath eq "", de(""), de(Config.ServerPat…
[all …]
/plugin/wysiwyg/fckeditor/editor/filemanager/connectors/php/
H A Dcommands.php168 global $Config ;
185 if ( isset( $Config['SecureImageUploads'] ) )
193 if ( isset( $Config['HtmlExtensions'] ) )
195 …if ( !IsHtmlExtension( $sExtension, $Config['HtmlExtensions'] ) && DetectHtml( $oFile['tmp_name'] …
H A Dconfig.php25 global $Config ;
114 $Config['FileTypesPath']['File'] = $Config['UserFilesPath'] . 'file/' ;
115 $Config['FileTypesAbsolutePath']['File']= ($Config['UserFilesAbsolutePath'] == '') ? '' : $Config['…
116 $Config['QuickUploadPath']['File'] = $Config['UserFilesPath'] ;
117 $Config['QuickUploadAbsolutePath']['File']= $Config['UserFilesAbsolutePath'] ;
121 $Config['FileTypesPath']['Image'] = $Config['UserFilesPath'] . 'image/' ;
123 $Config['QuickUploadPath']['Image'] = $Config['UserFilesPath'] ;
128 $Config['FileTypesPath']['Flash'] = $Config['UserFilesPath'] . 'flash/' ;
130 $Config['QuickUploadPath']['Flash'] = $Config['UserFilesPath'] ;
135 $Config['FileTypesPath']['Media'] = $Config['UserFilesPath'] . 'media/' ;
[all …]
H A Dconnector.php34 if ( !$Config['Enabled'] )
H A Dio.php30 global $Config ;
33 return $Config['QuickUploadPath'][$resourceType] ;
35 return $Config['FileTypesPath'][$resourceType] ;
40 global $Config ;
52 return $Config['FileTypesAbsolutePath'][$resourceType] ;
178 global $Config ;
181 $arDenied = $Config['DeniedExtensions'][$resourceType] ;
194 global $Config ;
203 global $Config ;
248 global $Config ;
[all …]
H A Dupload.php38 if ( !$Config['Enabled'] )
/plugin/wysiwyg/fckeditor/editor/filemanager/connectors/py/
H A Dconnector.py34 import config as Config namespace
47 if not(Config.Enabled):
62 if ( not command in Config.ConfigAllowedCommands ):
65 if ( not resourceType in Config.ConfigAllowedTypes ):
70 self.userFilesFolder = Config.QuickUploadAbsolutePath[resourceType]
71 self.webUserFilesFolder = Config.QuickUploadPath[resourceType]
73 self.userFilesFolder = Config.FileTypesAbsolutePath[resourceType]
74 self.webUserFilesFolder = Config.FileTypesPath[resourceType]
H A Dfckcommands.py37 import config as Config namespace
131 allowedExtensions = Config.AllowedExtensions[resourceType]
132 deniedExtensions = Config.DeniedExtensions[resourceType]
H A Dfckconnector.py33 import config as Config namespace
H A Dfckutil.py29 import config as Config namespace
70 if ( Config.ForceSingleExtension ): # remove dots
H A Dupload.py31 import config as Config namespace
39 if not(Config.Enabled):
50 if ( not command in Config.ConfigAllowedCommands ):
53 if ( not resourceType in Config.ConfigAllowedTypes ):
57 self.userFilesFolder = Config.QuickUploadAbsolutePath[resourceType]
58 self.webUserFilesFolder = Config.QuickUploadPath[resourceType]
H A Dzope.py34 import config as Config namespace

1234567891011