1267 Posts in 351 Topics by 486 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 836 Views |
-
Problem with subtemplate

18 May 2010 at 5:44am
Hey
I´m trying to display my Spielbericht Class with a subtemplate, but have some problems with it...My Spielbericht class file mysite/code/Spielbericht.php
<?php
class SpielberichtPage extends Page {public static $db = array(
);public static $has_one = array(
);}
class SpielberichtPage_Controller extends Page_Controller {function AnzeigenSpielbericht(){
$game = new DetailedGame();
$game->GetByID('2664664');
return $game->DisplayTableHTML();
}
}I´ve also created a Spielbericht.ss file:
themes/djkwallstadt/templates/Layout/Spielbericht.ss (yes, i use a custom template)<div class="typography" id="mainContent">
$Content
$AnzeigenSpielbericht
$Form
$PageComments
</div>when i load the page, it is not working, but when i add $AnzeigenSpielbericht to the Page.ss, everything works fine (so there is no problem with the function)
Can you help me?
I use the 2.4 releaseThank you
StarForce
-
Re: Problem with subtemplate

18 May 2010 at 5:52am
argh.... found the problem
should be SpielberichtPage.ss and not Spielbericht.ss
*sry*
| 836 Views | ||
|
Page:
1
|
Go to Top |

