Home
last modified time | relevance | path

Searched refs:smiley (Results 1 – 25 of 69) sorted by relevance

123

/plugin/html5/
H A Drenderer.php150 function smiley($smiley) { argument
151 if ( array_key_exists($smiley, $this->smileys) ) {
152 $title = $this->_xmlEntities($this->smileys[$smiley]);
153 $this->doc .= '<img src="'.DOKU_BASE.'lib/images/smileys/'.$this->smileys[$smiley].
155 $this->_xmlEntities($smiley).'" />';
157 $this->doc .= $this->_xmlEntities($smiley);
/plugin/multiselect/
H A Dsyntax.php106 $renderer->smiley(reset($smileys));
124 foreach($smileys as $smiley) {
127 $renderer->smiley($smiley);
134 $renderer->smiley(reset($smileys));
138 $renderer->smiley(reset($smileys));
146 $renderer->smiley(reset($smileys));
/plugin/ckgdoku/ckeditor/plugins/smiley/
H A Dplugin.js.unc6 CKEDITOR.plugins.add( 'smiley', {
9 icons: 'smiley', // %REMOVE_LINE_CORE%
13 editor.addCommand( 'smiley', new CKEDITOR.dialogCommand( 'smiley', {
18 label: editor.lang.smiley.toolbar,
19 command: 'smiley',
22 CKEDITOR.dialog.add( 'smiley', this.path + 'dialogs/smiley.js' );
27 * The base path used to build the URL for the smiley images. It must end with a slash.
33 * @cfg {String} [smiley_path=CKEDITOR.basePath + 'plugins/smiley/images/']
66 * 'smiley', 'sad', 'wink', 'laugh', 'frown', 'cheeky', 'blush', 'surprise',
82 'smiley', 'sad', 'wink', 'laugh', 'frown', 'cheeky', 'blush', 'surprise',
H A Dplugin.js1 …edContent:"img"}));a.ui.addButton&&a.ui.addButton("Smiley",{label:a.lang.smiley.toolbar,command:"s…
/plugin/ckgedit/ckeditor/plugins/smiley/
H A Dplugin.js.unc6 CKEDITOR.plugins.add( 'smiley', {
9 icons: 'smiley', // %REMOVE_LINE_CORE%
13 editor.addCommand( 'smiley', new CKEDITOR.dialogCommand( 'smiley', {
18 label: editor.lang.smiley.toolbar,
19 command: 'smiley',
22 CKEDITOR.dialog.add( 'smiley', this.path + 'dialogs/smiley.js' );
27 * The base path used to build the URL for the smiley images. It must end with a slash.
33 * @cfg {String} [smiley_path=CKEDITOR.basePath + 'plugins/smiley/images/']
66 * 'smiley', 'sad', 'wink', 'laugh', 'frown', 'cheeky', 'blush', 'surprise',
82 'smiley', 'sad', 'wink', 'laugh', 'frown', 'cheeky', 'blush', 'surprise',
H A Dplugin.js1 …edContent:"img"}));a.ui.addButton&&a.ui.addButton("Smiley",{label:a.lang.smiley.toolbar,command:"s…
/plugin/vshare/syntax/
H A Ddebug.php67 $renderer->smiley('FIXME');
78 $renderer->smiley('FIXME');
/plugin/dw2markdown/
H A Drenderer.php402 * @param string $smiley
404 function smiley($smiley) { function in Renderer_Plugin_dw2markdown
405 $this->doc .= $smiley;
/plugin/qc/
H A Drenderer.php242 public function smiley($smiley)
244 if ($smiley == 'FIXME') $this->docArray['fixme']++;
234 smiley($smiley) global() argument
/plugin/struct/renderer/
H A Dcsv.php233 public function smiley($smiley) argument
235 $this->cdata($smiley);
/plugin/combo/resources/theme/default/components/css/
H A Ddokuwiki-smiley.css2 img.smiley { max-height: 1.2em; }
/plugin/prosemirror/
H A Drenderer.php561 public function smiley($smiley) argument
563 if(array_key_exists($smiley, $this->smileys)) {
564 $node = new Node('smiley');
565 $node->attr('icon', $this->smileys[$smiley]);
566 $node->attr('syntax', $smiley);
569 $this->cdata($smiley);
/plugin/eventline/
H A Dplain.php76 function smiley($smiley) { argument
77 $this->doc .= ' ' . $smiley . ' ';
/plugin/ckgdoku/ckeditor/plugins/smiley/dialogs/
H A Dsmiley.js.4.35 CKEDITOR.dialog.add("smiley",function(f){for(var e=f.config,a=f.lang.smiley,h=e.smiley_images,g=e.s…
10 …k:k,style:"width: 100%; border-collapse: separate;"};return{title:f.lang.smiley.title,minWidth:270…
H A Dsmiley.js.unc6 CKEDITOR.dialog.add( 'smiley', function( editor ) {
8 lang = editor.lang.smiley,
132 // Build the HTML for the smiley images table.
226 title: editor.lang.smiley.title,
/plugin/ckgedit/ckeditor/plugins/smiley/dialogs/
H A Dsmiley.js.4.35 CKEDITOR.dialog.add("smiley",function(f){for(var e=f.config,a=f.lang.smiley,h=e.smiley_images,g=e.s…
10 …k:k,style:"width: 100%; border-collapse: separate;"};return{title:f.lang.smiley.title,minWidth:270…
H A Dsmiley.js.unc6 CKEDITOR.dialog.add( 'smiley', function( editor ) {
8 lang = editor.lang.smiley,
132 // Build the HTML for the smiley images table.
226 title: editor.lang.smiley.title,
/plugin/epub/
H A Drenderer.php322 function smiley($smiley) { function in renderer_plugin_epub
326 if ( array_key_exists($smiley, $this->smileys) ) {
327 $spath = DOKU_INC . 'lib/images/smileys/'.$smileys[$smiley];
/plugin/latexport/implementation/
H A Ddecorator.php645 * @param string $smiley
647 function smiley($smiley) { function in decorator
649 $this->decorator->smiley($smiley);
H A Ddecorator_persister.php613 * @param string $smiley
615 function smiley($smiley) { function in DecoratorPersister
616 $this->cdata($smiley);
/plugin/deeplautotranslate/
H A Daction.php879 foreach ($smileys as $smiley) {
880 $text = str_replace($smiley, "<ignore>" . $smiley . "</ignore>", $text);
936 foreach ($smileys as $smiley) {
937 $text = str_replace("<ignore>" . $smiley . "</ignore>", $smiley, $text);
/plugin/gemini/
H A Drenderer.php194 public function smiley($smiley) function in renderer_plugin_gemini
196 $this->cdata($smiley);
/plugin/txtconf/lang/en/
H A Dintro_smileys.txt7 Please note that you need to specify a smiley image file that does exist in your dokuwiki's ''image…
/plugin/txtconf/lang/fr/
H A Dintro_smileys.txt7 Please note that you need to specify a smiley image file that does exist in your dokuwiki's ''image…
/plugin/latexit/
H A Drenderer.php816 * @param string $smiley Smiley chars.
818 function smiley($smiley) { function in renderer_plugin_latexit
819 if ($smiley == 'FIXME' || $smiley == 'DELETEME') {
822 $this->doc .= $smiley;
824 $this->doc .= $this->_latexSpecialChars($smiley);

123