Guest User

Untitled

a guest
Apr 25th, 2018
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. <?php
  2. // Aliasy
  3. $names = array(
  4. 'corridor01' => 'korytarz01.php',
  5. 'bigroom' => 'wielka_sala',
  6. 'antechamber' => 'portretownia',
  7. 'tiara00' => 'tiara',
  8. 'entrance' => 'sala_wyjsciowa',
  9. 'filch' => 'filch',
  10. 'dormitory' => 'dorm',
  11. );
  12.  
  13. try {
  14. $name = $names[$_GET['ppz']];
  15. require_once(MOD."hogwart/".$name.".php");
  16. $LOADLtpl = "hogwart/".$name.".tpl";
  17. $LOKACJAopis = "hogwart/".$name;
  18. }
  19. catch (Exception $error) {
  20.  
  21. }
Add Comment
Please, Sign In to add comment