You are here

function XBBCodeTagMatch::advance in Extensible BBCode 7

File

./xbbcode.filter.inc, line 191
The filtering class. This will be instanced for each filter, and then called to process a piece of text.

Class

XBBCodeTagMatch

Code

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