17488 Posts in 4473 Topics by 1978 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 1508 Views |
-
How to integrate with SMF ?

31 August 2008 at 10:40am
I am using one function call in php from smf that is SSI that allows me to show th elast messages from the forum in another page.
How can this be used with siverstripe ?
-
Re: How to integrate with SMF ?

4 September 2008 at 5:23am Last edited: 5 September 2008 10:17am
Edit your /mysite/code/Page.php (or if you've made your own page class edit that).
On the top line after the opening PHP tag include SSI.php
for example:include("/var/www/html/smf/SSI.php");
Then before the final } add this:
function Content()
{
$content = $this->Content;
$content = str_replace('[[recentPosts]]', ssi_recentPosts(), $content);
return $content;
}Then add [[recentPosts]] somewhere on your content, and you should get the function recentPosts returned. Of course you can name it something else and call a different function.
If you're interested my Page.php looks like this:
http://pastebin.com/f11794065If you get stuck let me know.
| 1508 Views | ||
|
Page:
1
|
Go to Top |


