Home
last modified time | relevance | path

Searched refs:oFCKeditor (Results 1 – 14 of 14) sorted by last modified time

/plugin/wysiwyg/
H A Dsyntax.php107 $oFCKeditor = new FCKeditor($name) ;
108 $oFCKeditor->BasePath = DOKU_BASE."lib/plugins/wysiwyg/fckeditor/";
109 $oFCKeditor->Value = $html;
110 $oFCKeditor->ToolbarSet = 'dokuwiki';
111 $oFCKeditor->Height = '150';
112 return $oFCKeditor->CreateHtml() ;
/plugin/wysiwyg/fckeditor/_samples/afp/
H A Dsample01.afp44 oFCKeditor = CREATEOBJECT("FCKeditor")
45 oFCKeditor.fckeditor("FCKeditor1")
46 oFCKeditor.BasePath = sBasePath
47 oFCKeditor.cValue = lcText
49 ? oFCKeditor.Create()
H A Dsample03.afp69 oFCKeditor = CREATEOBJECT("FCKeditor")
70 oFCKeditor.fckeditor("FCKeditor1")
73 lcToolbar=oFCKeditor.StripAttacks(lcToolbar) && Remove special escape characters
75 oFCKeditor.ToolbarSet=lcToolbar
81 oFCKeditor.BasePath = sBasePath
82 oFCKeditor.cValue = lcText
84 ? oFCKeditor.Create()
H A Dsample04.afp75 oFCKeditor = CREATEOBJECT("FCKeditor")
76 oFCKeditor.fckeditor("FCKeditor1")
79 lcSkin=oFCKeditor.StripAttacks(lcSkin) && Remove special escape characters
81 oFCKeditor.aconfig[1,1]="SkinPath"
82oFCKeditor.aconfig[1,2]="/fckeditor/editor/skins/"+lcSkin+"/" && <-- Change this to your local path
88 oFCKeditor.BasePath = sBasePath
89 oFCKeditor.cValue = lcText
91 ? oFCKeditor.Create()
H A Dsample02.afp82 oFCKeditor = CREATEOBJECT("FCKeditor")
83 oFCKeditor.fckeditor("FCKeditor1")
90 oFCKeditor.aconfig[1,2]="true"
91 oFCKeditor.aconfig[2,1]="DefaultLanguage"
92 oFCKeditor.aconfig[2,2]="en"
95 oFCKeditor.aconfig[1,2]="false"
96 oFCKeditor.aconfig[2,1]="DefaultLanguage"
97 oFCKeditor.aconfig[2,2]=lcLanguage
103 oFCKeditor.BasePath = sBasePath
104 oFCKeditor.cValue = lcText
[all …]
/plugin/wysiwyg/fckeditor/_samples/php/
H A Dsample04.php82 $oFCKeditor = new FCKeditor('FCKeditor1') ; variable
83 $oFCKeditor->BasePath = $sBasePath ;
86 …$oFCKeditor->Config['SkinPath'] = $sBasePath . 'editor/skins/' . htmlspecialchars($_GET['Skin']) .…
88 $oFCKeditor->Value = '<p>This is some <strong>sample text</strong>. You are using <a href="http://w…
89 $oFCKeditor->Create() ;
H A Dsample01.php48 $oFCKeditor = new FCKeditor('FCKeditor1') ; variable
49 $oFCKeditor->BasePath = $sBasePath ;
50 $oFCKeditor->Value = '<p>This is some <strong>sample text</strong>. You are using <a href="http://…
51 $oFCKeditor->Create() ;
H A Dsample02.php88 $oFCKeditor = new FCKeditor('FCKeditor1') ; variable
89 $oFCKeditor->BasePath = $sBasePath ;
93 $oFCKeditor->Config['AutoDetectLanguage'] = false ;
94 $oFCKeditor->Config['DefaultLanguage'] = $_GET['Lang'] ;
98 $oFCKeditor->Config['AutoDetectLanguage'] = true ;
99 $oFCKeditor->Config['DefaultLanguage'] = 'en' ;
102 $oFCKeditor->Value = '<p>This is some <strong>sample text</strong>. You are using <a href="http://w…
103 $oFCKeditor->Create() ;
H A Dsample03.php76 $oFCKeditor = new FCKeditor('FCKeditor1') ; variable
77 $oFCKeditor->BasePath = $sBasePath ;
80 $oFCKeditor->ToolbarSet = htmlspecialchars($_GET['Toolbar']);
82 $oFCKeditor->Value = '<p>This is some <strong>sample text</strong>. You are using <a href="http://w…
83 $oFCKeditor->Create() ;
/plugin/wysiwyg/fckeditor/_samples/py/
H A Dsample01.py58 oFCKeditor = fckeditor.FCKeditor('FCKeditor1') variable
59 oFCKeditor.BasePath = sBasePath
60oFCKeditor.Value = """<p>This is some <strong>sample text</strong>. You are using <a href="http://…
61 print oFCKeditor.Create()
/plugin/wysiwyg/fckeditor/_samples/asp/
H A Dsample01.asp47 ' oFCKeditor.BasePath = '/fckeditor/' ; // '/fckeditor/' is the default value.
52 Dim oFCKeditor variable
53 Set oFCKeditor = New FCKeditor
54 oFCKeditor.BasePath = sBasePath
55 oFCKeditor.Value = "<p>This is some <strong>sample text</strong>. You are using <a href=""http://ww…
56 oFCKeditor.Create "FCKeditor1"
H A Dsample03.asp72 ' oFCKeditor.BasePath = '/fckeditor/' ; // '/fckeditor/' is the default value.
77 Dim oFCKeditor variable
78 Set oFCKeditor = New FCKeditor
79 oFCKeditor.BasePath = sBasePath
82 oFCKeditor.ToolbarSet = Server.HTMLEncode( Request.QueryString("Toolbar") )
85 oFCKeditor.Value = "<p>This is some <strong>sample text</strong>. You are using <a href=""http://ww…
86 oFCKeditor.Create "FCKeditor1"
H A Dsample04.asp78 ' oFCKeditor.BasePath = '/fckeditor/' ; // '/fckeditor/' is the default value.
83 Dim oFCKeditor variable
84 Set oFCKeditor = New FCKeditor
85 oFCKeditor.BasePath = sBasePath
88oFCKeditor.Config("SkinPath") = sBasePath + "editor/skins/" & Server.HTMLEncode( Request.QueryStri…
91 oFCKeditor.Value = "<p>This is some <strong>sample text</strong>. You are using <a href=""http://ww…
92 oFCKeditor.Create "FCKeditor1"
H A Dsample02.asp84 ' oFCKeditor.BasePath = '/fckeditor/' ; // '/fckeditor/' is the default value.
89 Dim oFCKeditor variable
90 Set oFCKeditor = New FCKeditor
91 oFCKeditor.BasePath = sBasePath
94 oFCKeditor.Config("AutoDetectLanguage") = True
95 oFCKeditor.Config("DefaultLanguage") = "en"
97 oFCKeditor.Config("AutoDetectLanguage") = False
98 oFCKeditor.Config("DefaultLanguage") = Request.QueryString("Lang")
101 oFCKeditor.Value = "<p>This is some <strong>sample text</strong>. You are using <a href=""http://ww…
102 oFCKeditor.Create "FCKeditor1"