BBCodeLexer::RestoreState( $state )


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'];
}

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.