Home
last modified time | relevance | path

Searched refs:sKey (Results 1 – 10 of 10) sorted by relevance

/plugin/wysiwyg/fckeditor/editor/_source/internals/
H A Dfckconfig.js88 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 Dfcklanguagemanager.js125 var sKey, s ; variable
129 if ( (sKey = e[i].getAttribute( 'fckLang' )) )
132 if ( (s = FCKLang[ sKey ]) )
/plugin/switchpanel/
H A Dsyntax.php96 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 Dfckeditor_php5.php141 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 Dfckeditor_php4.php151 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 Dfckeditor.pl124 foreach $sKey (keys %Config) {
125 $sValue = $Config{$sKey};
131 $k = &specialchar_cnv($sKey);
H A Dfckeditor.py146 for sKey in self.Config.keys():
147 sValue = self.Config[sKey]
153 k = escape(sKey)
H A Dfckeditor.afp143 LOCAL sKey
/plugin/jmol2/jmol/
H A DJmol.js1293 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 Dfck.afpa.code125 LOCAL sKey