-
Notifications
You must be signed in to change notification settings - Fork 138
/
activation_email.php
44 lines (32 loc) · 1.12 KB
/
activation_email.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
/**
* 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'] = 35;
$_page['css_name'] = 'activation_email.css';
$logged['member'] = member_auth(0);
$_page['header'] = _t( "_ACTIVATION_EMAIL_H" );
$_page['header_text'] = _t( "_ACTIVATION_EMAIL_H1" );
// --------------- 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()
{
$memberID = getLoggedId();
$p_arr = getProfileInfo( $memberID ); //db_assoc_arr( "SELECT `Status` FROM `Profiles` WHERE `ID` = '$memberID'" );
if ( $p_arr['Status'] != 'Unconfirmed' )
return _t( "_NO_NEED_TO_CONFIRM_EMAIL" );
else
return activation_mail( $memberID );
}