Lines Matching refs:this

33             $this->ruleset = $ruleset;
50 $string = $this->unicodeToImage($string);
51 $string = $this->shortnameToImage($string);
65 $string = $this->toShort($string);
66 $string = $this->shortnameToUnicode($string);
80 if ($this->shortcodes)
82 …$string = preg_replace_callback('/'.$this->ignoredRegexp.'|('.$this->shortcodeRegexp.')/Si', array…
85 if ($this->ascii)
87 $ruleset = $this->getRuleset();
90 …$string = preg_replace_callback('/'.$this->ignoredRegexp.'|((\\s|^)'.$asciiRegexp.'(?=\\s|$|[!,.?]…
106 …$string = preg_replace_callback('/'.$this->ignoredRegexp.'|('.$this->shortcodeRegexp.')/Si', array…
121 $ruleset = $this->getRuleset();
123 …return preg_replace_callback('/'.$this->ignoredRegexp.'|((\\s|^)'.$asciiRegexp.'(?=\\s|$|[!,.?]))/…
134 if ($this->shortcodes)
136 …$string = preg_replace_callback('/'.$this->ignoredRegexp.'|('.$this->shortcodeRegexp.')/Si', array…
139 if ($this->ascii)
141 $ruleset = $this->getRuleset();
144 …$string = preg_replace_callback('/'.$this->ignoredRegexp.'|((\\s|^)'.$asciiRegexp.'(?=\\s|$|[!,.?]…
158 …return preg_replace_callback('/'.$this->ignoredRegexp.'|'.$this->unicodeRegexp.'/S', array($this, …
169 …return preg_replace_callback('/'.$this->ignoredRegexp.'|'.$this->unicodeRegexp.'/S', array($this, …
188 $ruleset = $this->getRuleset();
217 $ruleset = $this->getRuleset();
244 $ruleset = $this->getRuleset();
257 $titleTag = $this->imageTitleTag ? 'title="'.htmlspecialchars($shortname).'"' : '';
259 if ($this->unicodeAlt)
261 $alt = $this->convert($unicode);
268 if ($this->imageType == 'png')
270 if ($this->sprites)
276 …g class="emojione" alt="'.$alt.'" '.$titleTag.' src="'.$this->imagePathPNG.$filename.'.png'.$this-…
280 if ($this->sprites)
282 …g class="emojione"><description>'.$alt.'</description><use xlink:href="'.$this->imagePathSVGSprite…
286 …return '<object class="emojione" data="'.$this->imagePathSVG.$filename.'.svg'.$this->cacheBustPara…
303 $ruleset = $this->getRuleset();
308 return $m[2].$this->convert($unicode);
324 $ruleset = $this->getRuleset();
346 $ruleset = $this->getRuleset();
351 $titleTag = $this->imageTitleTag ? 'title="'.htmlspecialchars($shortname).'"' : '';
354 if ($this->unicodeAlt)
356 $alt = $this->convert($unicode);
363 if ($this->imageType == 'png')
365 if ($this->sprites)
371 …g class="emojione" alt="'.$alt.'" '.$titleTag.' src="'.$this->imagePathPNG.$unicode.'.png'.$this->…
375 if ($this->sprites)
377 …g class="emojione"><description>'.$alt.'</description><use xlink:href="'.$this->imagePathSVGSprite…
381 …return $m[2].'<object class="emojione" data="'.$this->imagePathSVG.$unicode.'.svg'.$this->cacheBus…
398 $ruleset = $this->getRuleset();
434 $ruleset = $this->getRuleset();
469 $titleTag = $this->imageTitleTag ? 'title="'.htmlspecialchars($shortname).'"' : '';
471 if ($this->unicodeAlt)
480 if ($this->imageType == 'png')
482 if ($this->sprites)
488 …eTag.' title="'.htmlspecialchars($shortname).'" src="'.$this->imagePathPNG.$filename.'.png'.$this-…
492 if ($this->sprites)
494 …g class="emojione"><description>'.$alt.'</description><use xlink:href="'.$this->imagePathSVGSprite…
498 …return '<object class="emojione" data="'.$this->imagePathSVG.$filename.'.svg'.$this->cacheBustPara…
533 if ( $this->ruleset === null )
535 $this->ruleset = new Ruleset;
538 return $this->ruleset;