Advertisement
snake5

Source of the Gunplay v0.2 web page.

Dec 17th, 2011
233
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.54 KB | None | 0 0
  1. <?php
  2.  
  3. include_once "core/content.php";
  4.  
  5. $state = InitUsers( GetDB() );
  6. Maintenance( $state );
  7.  
  8. $data = array();
  9. $data[] = new ImageGallery( "files/games/gunplay2/" );
  10. $data[] = new SplitBlock( nl2br( file_get_contents( "files/games/gunplay2/full.htm" ) ), "textBlock" );
  11. $data[] = new WrapperBlock( "Technical info / Credits", nl2br( file_get_contents( "files/games/gunplay2/tech.htm" ) ) );
  12.  
  13. $fdata = array( new TitleBlock( "Gunplay v0.2 (2009)" ), new SplitBlock( $data, "textBlock" ) );
  14. $PAGE = CreatePage( "games", $fdata, $state );
  15.  
  16. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement