HTMLPurifier_Zipper::insertBefore PHP Method

insertBefore() public method

Insert element before hole.
public insertBefore ( $t )
    public function insertBefore($t)
    {
        if ($t !== NULL) {
            array_push($this->front, $t);
        }
    }