This repository has been archived by the owner on Sep 29, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 42
/
account.php
executable file
·44 lines (38 loc) · 1.96 KB
/
account.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
34
35
36
37
38
39
40
41
42
43
44
<?php
/***************************************************************************
*
* PROJECT: eLitius Open Source Affiliate Software
* VERSION: 1.0
* LISENSE: GNU GPL (http://www.opensource.org/licenses/gpl-license.html)
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation.
*
* Link to eLitius.com can not be removed from the software pages without
* permission of the eLitius respective owners. It is the only requirement
* for using this software.
*
* Copyright 2009 Intelliants LLC
* http://www.intelliants.com/
*
***************************************************************************/
$gProtected = TRUE;
require_once('header.php');
$title = $gXpLang['site_title'].' - '.$gXpLang['aff_area'];
$description = $gXpLang['desc_account'];
$keywords = $gXpLang['keyword_account'];
$icons = array(
0 => array('path' => 'banners.php','img' => $gXpConfig['xpurl'].'templates/'.$gXpConfig['tmpl'].'/images/config.png', 'text' => $gXpLang['banners']),
1 => array('path' => 'text-ads.php','img' => $gXpConfig['xpurl'].'templates/'.$gXpConfig['tmpl'].'/images/user.png', 'text' => $gXpLang['text_ads']),
2 => array('path' => 'text-links.php','img' => $gXpConfig['xpurl'].'templates/'.$gXpConfig['tmpl'].'/images/addedit.png', 'text' => $gXpLang['text_links']),
3 => array('path' => 'email-links.php','img' => $gXpConfig['xpurl'].'templates/'.$gXpConfig['tmpl'].'/images/langmanager.png', 'text' => $gXpLang['email_links']),
);
$control_panel = $gXpLayout->print_control_panel($icons);
$gXpSmarty->assign_by_ref('description', $description);
$gXpSmarty->assign_by_ref('keywords', $keywords);
$gXpSmarty->assign_by_ref('xproot', $gXpConfig['xpurl']);
$gXpSmarty->assign_by_ref('control_panel', $control_panel);
$gXpSmarty->assign_by_ref('title', $title);
$gXpSmarty->display("account.tpl");
?>