class Twig_Markup

Marks a content as safe.

@package twig @author Fabien Potencier <fabien@symfony.com>

Hierarchy

Expanded class hierarchy of Twig_Markup

File

drupal/core/vendor/twig/twig/lib/Twig/Markup.php, line 18

View source
class Twig_Markup implements Countable {
  protected $content;
  protected $charset;
  public function __construct($content, $charset) {
    $this->content = (string) $content;
    $this->charset = $charset;
  }
  public function __toString() {
    return $this->content;
  }
  public function count() {
    return function_exists('mb_get_info') ? mb_strlen($this->content, $this->charset) : strlen($this->content);
  }

}

Members

Namesort descending Modifiers Type Description Overrides
Twig_Markup::$charset protected property
Twig_Markup::$content protected property
Twig_Markup::count public function
Twig_Markup::__construct public function
Twig_Markup::__toString public function