Home
last modified time | relevance | path

Searched refs:charset (Results 1 – 25 of 79) sorted by relevance

1234

/template/twigstarter/vendor/twig/twig/src/Extension/
DEscaperExtension.php166 * @param string $charset The charset
171 function twig_escape_filter(Environment $env, $string, $strategy = 'html', $charset = null, $autoes… argument
208 if (null === $charset) {
209 $charset = $env->getCharset();
236 if (isset($htmlspecialcharsCharsets[$charset])) {
237 return htmlspecialchars($string, \ENT_QUOTES | \ENT_SUBSTITUTE, $charset);
240 if (isset($htmlspecialcharsCharsets[strtoupper($charset)])) {
242 $htmlspecialcharsCharsets[$charset] = true;
244 return htmlspecialchars($string, \ENT_QUOTES | \ENT_SUBSTITUTE, $charset);
247 $string = twig_convert_encoding($string, 'UTF-8', $charset);
[all …]
DCoreExtension.php412 $charset = $env->getCharset();
414 if ('UTF-8' !== $charset) {
415 $values = twig_convert_encoding($values, 'UTF-8', $charset);
422 if ('UTF-8' !== $charset) {
424 $values[$i] = twig_convert_encoding($value, $charset, 'UTF-8');
905 $charset = $env->getCharset();
907 if ('UTF-8' !== $charset) {
908 $string = twig_convert_encoding($string, 'UTF-8', $charset);
915 if ('UTF-8' !== $charset) {
916 $string = twig_convert_encoding($string, $charset, 'UTF-8');
[all …]
/template/twigstarter/vendor/twig/twig/src/
DMarkup.php22 private $charset; variable in Twig\\Markup
24 public function __construct($content, $charset) argument
27 $this->charset = $charset;
41 return mb_strlen($this->content, $this->charset);
DEnvironment.php48 private $charset; variable in Twig\\Environment
621 * @param string $charset The default charset
623 public function setCharset($charset) argument
625 if ('UTF8' === $charset = null === $charset ? null : strtoupper($charset)) {
627 $charset = 'UTF-8';
630 $this->charset = $charset;
640 return $this->charset;
/template/bootstrap3/inc/
Dsimple_html_dom.php1671 $charset = null;
1677 $charset = $matches[1];
1681 . $charset
1687 if (empty($charset)) {
1708 $charset = $matches[1];
1719 $charset = 'ISO-8859-1';
1725 if (empty($charset)) {
1728 $charset = $meta->charset;
1730 $debug_object->debug_log(2, 'meta charset: ' . $charset);
1735 if (empty($charset)) {
[all …]
/template/mikio/inc/
H A Dsimple_html_dom.php1677 $charset = null;
1683 $charset = $matches[1];
1687 . $charset
1693 if (empty($charset)) {
1714 $charset = $matches[1];
1725 $charset = 'ISO-8859-1';
1731 if (empty($charset)) {
1734 $charset = $meta->charset;
1736 $debug_object->debug_log(2, 'meta charset: ' . $charset);
1741 if (empty($charset)) {
[all …]
/template/strap/vendor/dragonmantank/cron-expression/
H A D.editorconfig4 charset = utf-8
/template/strap/vendor/carica/phpcss/
H A D.editorconfig10 charset = utf-8
/template/bootstrap3/
D.editorconfig9 charset = utf-8
/template/writr/
D.editorconfig9 charset = utf-8
/template/typowiki/typowiki/scss/
DtypoUI.scss1 @charset 'utf-8';
/template/breeze/bower_components/gumby/sass/
Dgumby.scss19 @charset "UTF-8";
/template/strap/resources/theme/default/pages/partials/
H A Dhead-partial.hbs1 <meta charset="utf-8">
/template/twigstarter/vendor/symfony/polyfill-mbstring/
Dbootstrap.php25 …string, $charset = null, $transfer_encoding = null, $newline = "\r\n", $indent = 0) { return p\Mbs… argument
Dbootstrap80.php21charset = null, ?string $transfer_encoding = null, ?string $newline = "\r\n", ?int $indent = 0): s… argument
/template/strap/vendor/symfony/polyfill-mbstring/
H A Dbootstrap.php25 …string, $charset = null, $transfer_encoding = null, $newline = "\r\n", $indent = 0) { return p\Mbs… argument
H A Dbootstrap80.php21charset = null, ?string $transfer_encoding = null, ?string $newline = "\r\n", ?int $indent = 0): s… argument
/template/breeze/sass/
Dgumby.scss19 @charset "UTF-8";
/template/my_little_forum/
Dmlf.css1 @charset "utf-8";
/template/dynamic_template/
Dcustom.css1 @charset "utf-10";
Dcustom1152.css1 @charset "utf-9";
Dfbcustom.css1 @charset "utf-8";
Dcustom800.css1 @charset "utf-8";
Dcustom1024.css1 @charset "utf-9";
/template/strap/resources/theme/default/components/css/
H A Dminimap.css11 …background-image: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" wid…

1234