17488 Posts in 4473 Topics by 1978 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 1074 Views |
-
Can you?

18 July 2008 at 7:24am
Can you insert raw php code into the content section of a page in the admin part of the CMS? Or is there a way to insert php code into a page?
-
Re: Can you?

18 July 2008 at 2:00pm
No you cannot insert PHP in the text view. Though you can to a token in the text view for example you can you do $MyToken in the text editor then in your Page.php - Page_Controller class have a method
function Content() {
return str_replace('$MyToken', $this->CustomPHPCode(), $this->Content);
}function CustomPHPCode() {
return "Hi!";
}
Then that will insert the CustomPHPCode() ("Hi!") in where every you have $MyToken in the template.http://doc.silverstripe.com/doku.php?id=recipes:customising-content-in-your-templates
| 1074 Views | ||
|
Page:
1
|
Go to Top |


