You are here

function XBBCodeTagMatch::advance in Extensible BBCode 8

Same name and namespace in other branches
  1. 8.2 src/XBBCodeTagMatch.php \Drupal\xbbcode\XBBCodeTagMatch::advance()

File

lib/Drupal/xbbcode/XBBCodeTagMatch.php, line 37

Class

XBBCodeTagMatch

Namespace

Drupal\xbbcode

Code

function advance($text, $offset) {
  $this->content .= substr($text, $this->offset, $offset - $this->offset);
  $this->offset = $offset;
}