BBCodeLexer::RestoreState( $state )
Contents
Description Description
Source Source
File: includes/admin/parser.php
function RestoreState($state) { if (!is_array($state)) return; $this->token = @$state['token']; $this->text = @$state['text']; $this->tag = @$state['tag']; $this->state = @$state['state']; $this->input = @$state['input']; $this->ptr = @$state['ptr']; $this->unget = @$state['unget']; $this->verbatim = @$state['verbatim']; }