ahughes3 Posted April 11, 2015 Report Share Posted April 11, 2015 I have created a module called FlightBoards.php and a template called flight_boards.php. I have managed to set it so that a link appears on my page and when clicked, it takes you to the FlightBoards page that displays flight_boards.php content. What I want to do is to get rid of the link and just have the flight_boards.php content show directly in the page without needing to click on a link. So far, the code I've used to create the link is: http://<a href="<?php echo url('/FlightBoards'); ?>">Flightboards</a> My question - what would be the code needed to call the content directly into the page without needing a link? Thanks Quote Link to comment Share on other sites More sharing options...
Members Vangelis Posted April 11, 2015 Members Report Share Posted April 11, 2015 <?php nameofmodule::nameoffunction(); ?> Quote Link to comment Share on other sites More sharing options...
ahughes3 Posted April 11, 2015 Author Report Share Posted April 11, 2015 <?php nameofmodule::nameoffunction(); ?> By function name, do you mean the template? So it would look like; <?php FlightBoards::flight_boards.php(); ?> Or is function something else? Quote Link to comment Share on other sites More sharing options...
Members Vangelis Posted April 11, 2015 Members Report Share Posted April 11, 2015 sorry my bad it should be <?php Template::Show('nameoftemplate.php'); ?> or if you have an echo statement in your function then it should be <?php nameofmodule::nameoffunction(); ?> like in the news module of simpilot quote from github Where you want to call the PopUpNews List in your site use -><?php PopUpNews::PopUpNewsList(5); ?> Quote Link to comment Share on other sites More sharing options...
ahughes3 Posted April 12, 2015 Author Report Share Posted April 12, 2015 sorry my bad it should be <?php Template::Show('nameoftemplate.php'); ?> @Vangelis - That worked almost perfectly, just the styling is messed up now but I suspect that is the difference between my skin styling and phpvms styling. Does anyone know where the style sheets are for phpvms that control tables widths etc? Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.