forked from MakaRax/HabboPHP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshop.php
33 lines (21 loc) · 1.07 KB
/
shop.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?php
#|#|#|#|#|#|#|#|#|#|#|#|#|#|#|#|#|#|#|#|#|#|#|#|#|#|#|#|#|#|#|#|#|#|#|#|#|#|
#| #|
#| HABBOPHP - http://habbophp.com #|
#| Copyright © 2012 Valentin & Robin. All rights reserved. #|
#| #|
#|#|#|#|#|#|#|#|#|#|#|#|#|#|#|#|#|#|#|#|#|#|#|#|#|#|#|#|#|#|#|#|#|#|#|#|#|#|
require'init.php';
$tpl->assign('jetons',$user->getJetons());
$tpl->assign('groups','shop');
$tpl->assign('token',Tools::generate_token());
if(empty($config->paypalemail)) $tpl->assign('paypalD','style="display:none;"');
else $tpl->assign('paypalD','');
if(empty($config->allopassauth)) $tpl->assign('allopassD','style="display:none;"');
else $tpl->assign('allopassD','');
if(empty($config->starpassacc)) $tpl->assign('starpassD','style="display:none;"');
else $tpl->assign('starpassD','');
$tpl->display('header.tpl');
$etape = (isset($_GET['etape'])) ? $_GET['etape'] : '1' ;
$tpl->display('shop.tpl');
$tpl->display('footer.tpl');