forked from boonex/dolphin.pro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
unregister.php
75 lines (59 loc) · 1.92 KB
/
unregister.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<?php
/**
* Copyright (c) BoonEx Pty Limited - http://www.boonex.com/
* CC-BY License - http://creativecommons.org/licenses/by/3.0/
*/
require_once( 'inc/header.inc.php' );
require_once( BX_DIRECTORY_PATH_INC . 'design.inc.php' );
require_once( BX_DIRECTORY_PATH_INC . 'profiles.inc.php' );
// --------------- page variables and login
$_page['name_index'] = 34;
$_page['css_name'] = 'unregister.css';
$logged['member'] = member_auth(0);
$_page['header'] = _t("_Delete account");
$_page['header_text'] = _t("_Delete account");
// --------------- page components
$_ni = $_page['name_index'];
$_page_cont[$_ni]['page_main_code'] = PageCompPageMainCode();
// --------------- [END] page components
PageCode();
// --------------- page components functions
/**
* page code function
*/
function PageCompPageMainCode()
{
$iUserId = getLoggedId();
if($_POST['DELETE']) {
profile_delete($iUserId);
bx_logout();
return MsgBox(_t("_DELETE_SUCCESS"));
}
$aForm = array(
'form_attrs' => array (
'action' => BX_DOL_URL_ROOT . 'unregister.php',
'method' => 'post',
'name' => 'form_unregister'
),
'inputs' => array(
'delete' => array (
'type' => 'hidden',
'name' => 'DELETE',
'value' => '1',
),
'info' => array(
'type' => 'custom',
'content' => _t("_DELETE_TEXT"),
'colspan' => true
),
'submit' => array (
'type' => 'submit',
'name' => 'submit',
'value' => _t("_Delete account"),
),
),
);
$oForm = new BxTemplFormView($aForm);
$GLOBALS['oTopMenu']->setCurrentProfileID($iUserId);
return $GLOBALS['oSysTemplate']->parseHtmlByName('default_margin.html', array('content' => $oForm->getCode()));
}