Searched refs:sKey (Results 1 – 10 of 10) sorted by relevance
/plugin/wysiwyg/fckeditor/editor/_source/internals/ |
H A D | fckconfig.js | 88 var sKey = decodeURIComponent( aConfig[0] ) ; 91 …if ( sKey == 'CustomConfigurationsPath' ) // The Custom Config File path must be loaded immediatel… 92 FCKConfig[ sKey ] = sVal ; 95 this.PageConfig[ sKey ] = true ; 98 this.PageConfig[ sKey ] = false ; 101 this.PageConfig[ sKey ] = parseInt( sVal, 10 ) ; 104 this.PageConfig[ sKey ] = sVal ; 111 for ( var sKey in oPageConfig ) 112 FCKConfig[ sKey ] = oPageConfig[ sKey ] ;
|
H A D | fcklanguagemanager.js | 125 var sKey, s ; variable 129 if ( (sKey = e[i].getAttribute( 'fckLang' )) ) 132 if ( (s = FCKLang[ sKey ]) )
|
/plugin/switchpanel/ |
H A D | syntax.php | 96 list( $sKey, $sVal ) = explode( '=', $sKeyVal ); 98 if( $sKey == 'content' || !array_key_exists( $sKey, $opt ) ){ 103 if( is_bool( $opt[ $sKey ] ) ){ 104 $opt[ $sKey ] = ( strtolower( $sVal ) == 'true' ); 105 }else if( is_int( $opt[ $sKey ] ) ){ 106 $opt[ $sKey ] = intval( $sVal ); 108 $opt[ $sKey ] = $sVal; 124 $sKey = trim( substr( $sOptions, 0, $iPosStop ) ); 149 $oOptions[ $sKey ] = $sValue; 234 foreach( $oOptions as $sKey=>$oValue ){ [all …]
|
/plugin/wysiwyg/fckeditor/ |
H A D | fckeditor_php5.php | 141 foreach ( $this->Config as $sKey => $sValue ) 149 $sParams .= $this->EncodeConfig( $sKey ) . '=true' ; 151 $sParams .= $this->EncodeConfig( $sKey ) . '=false' ; 153 $sParams .= $this->EncodeConfig( $sKey ) . '=' . $this->EncodeConfig( $sValue ) ;
|
H A D | fckeditor_php4.php | 151 foreach ( $this->Config as $sKey => $sValue ) 159 $sParams .= $this->EncodeConfig( $sKey ) . '=true' ; 161 $sParams .= $this->EncodeConfig( $sKey ) . '=false' ; 163 $sParams .= $this->EncodeConfig( $sKey ) . '=' . $this->EncodeConfig( $sValue ) ;
|
H A D | fckeditor.pl | 124 foreach $sKey (keys %Config) { 125 $sValue = $Config{$sKey}; 131 $k = &specialchar_cnv($sKey);
|
H A D | fckeditor.py | 146 for sKey in self.Config.keys(): 147 sValue = self.Config[sKey] 153 k = escape(sKey)
|
H A D | fckeditor.afp | 143 LOCAL sKey
|
/plugin/jmol2/jmol/ |
H A D | Jmol.js | 1293 function jmolGetPropertyAsArray(sKey,sValue,targetSuffix) { argument 1294 return _jmolEvalJSON(jmolGetPropertyAsJSON(sKey,sValue,targetSuffix),sKey) 1297 function jmolGetPropertyAsString(sKey,sValue,targetSuffix) { argument 1300 return (applet ? applet.getPropertyAsString(sKey,sValue) + "" : "") 1303 function jmolGetPropertyAsJSON(sKey,sValue,targetSuffix) { argument 1307 return (applet ? applet.getPropertyAsJSON(sKey,sValue) + "" : "") 1313 function jmolGetPropertyAsJavaObject(sKey,sValue,targetSuffix) { argument 1316 return (applet ? applet.getProperty(sKey,sValue) : null)
|
/plugin/wysiwyg/fckeditor/_samples/afp/ |
H A D | fck.afpa.code | 125 LOCAL sKey
|