App\Libraries\BBCodeFromDB::parseBox PHP Method

parseBox() public method

public parseBox ( $text )
    public function parseBox($text)
    {
        $text = preg_replace("#\\[box=(.*?):{$this->uid}\\]#", $this->parseBoxHelperPrefix('\\1'), $text);
        $text = str_replace("[/box:{$this->uid}]", $this->parseBoxHelperSuffix(), $text);
        $text = str_replace("[spoilerbox:{$this->uid}]", $this->parseBoxHelperPrefix('collapsed text'), $text);
        $text = str_replace("[/spoilerbox:{$this->uid}]", $this->parseBoxHelperSuffix(), $text);
        return $text;
    }