5096 Posts in 1518 Topics by 1115 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 816 Views |
-
How to use BBCodeParser in PHP code?

21 March 2010 at 10:19am
How to use BBCodeParser in PHP code?
This is not working!
new LiteralField ('Text', BBCodeParser::setContent($this->Text).'<br><br><br>') -
Re: How to use BBCodeParser in PHP code?

21 March 2010 at 10:35am
I found the solution
TextParser::create('BBCodeParser', $this->Text )->parse()
-
Re: How to use BBCodeParser in PHP code?

7 December 2010 at 2:41am
Thanks for the post cardinale! Saved me a lot of time. If you want to implement this globally on your site this might be a handy function to add to your Page.php base class:
class Page extends SiteTree {
....
public function getParsedContent() {
return TextParser::create('BBCodeParser', $this->Content )->parse();
}...
}Then just include $ParsedContent on your page templates to get it out the frontend.
| 816 Views | ||
|
Page:
1
|
Go to Top |


