Your IP : 216.73.217.77


Current Path : /home/users/unlimited/www/facebook.codeskitter.site/themes/wowonder/layout/setting/
Upload File :
Current File : /home/users/unlimited/www/facebook.codeskitter.site/themes/wowonder/layout/setting/content.phtml

<div class="modal fade" id="verify_code" role="dialog">
	<div class="modal-dialog modal-md wow_mat_mdl">
		<div class="modal-content">
			<div class="modal-header">
				<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-x"><line x1="18" y1="6" x2="6" y2="18"></line><line x1="6" y1="6" x2="18" y2="18"></line></svg></span></button>
				<h4 class="modal-title" id="two_factor_title">
					<?php 
						if ($wo['config']['two_factor_type'] == 'both') {
							echo $wo['lang']['confirmation_message_email_sent'];
						}
						elseif ($wo['config']['two_factor_type'] == 'email') {
							echo $wo['lang']['confirmation_email_sent'];
						}
						elseif ($wo['config']['two_factor_type'] == 'phone') {
							echo $wo['lang']['confirmation_message_sent'];
						}
					?>
				</h4>
			</div>
			<form id="confirmation_code_form" class="confirmation_code_form" method="POST">
				<div class="modal-body">
					<div id="confirmation_code_form_alert"></div>
					<span class="verfy_sett_email_phone_ico hidden"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="currentColor" d="M21,13.34C20.37,13.12 19.7,13 19,13A6,6 0 0,0 13,19C13,19.34 13.03,19.67 13.08,20H3A2,2 0 0,1 1,18V6C1,4.89 1.89,4 3,4H19A2,2 0 0,1 21,6V13.34M23.5,17L18.5,22L15,18.5L16.5,17L18.5,19L22,15.5L23.5,17M3,6V8L11,13L19,8V6L11,11L3,6Z" /></svg></span>
					<p id="two_factor_desc">
						<?php 
							if ($wo['config']['two_factor_type'] == 'both') {
								echo $wo['lang']['confirmation_email_message_text'];
							}
							elseif ($wo['config']['two_factor_type'] == 'email') {
								echo $wo['lang']['confirmation_email_text'];
							}
							elseif ($wo['config']['two_factor_type'] == 'phone') {
								echo $wo['lang']['confirmation_message_text'];
							}
						?>
					</p>
					<div class="wow_form_fields verfy_sett_email_phone">
						<label for="code"><?php echo $wo['lang']['confirmation_code']; ?></label>  
						<input id="code" name="code" type="text" autocomplete="off">
					</div>
				</div>
				<div class="modal-footer">
					<div class="ball-pulse"><div></div><div></div><div></div></div>
					<button id="confirmation_code_form_btn" type="submit" class="btn main btn-mat"><?php echo $wo['lang']['verify']; ?></button>
				</div>
			</form>
		</div>
	</div>
</div>

<div class="modal fade" id="verify_email_phone" role="dialog">
	<div class="modal-dialog modal-sm">
		<div class="modal-content">
			<div class="modal-header">
				<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-x"><line x1="18" y1="6" x2="6" y2="18"></line><line x1="6" y1="6" x2="18" y2="18"></line></svg></span></button>
				<h4 class="modal-title" id="verify_email_phone_title">
					<?php 
						if ($wo['config']['sms_or_email'] == 'mail') {
							echo $wo['lang']['confirmation_message_email_sent'];
						}
						elseif ($wo['config']['sms_or_email'] == 'sms') {
							echo $wo['lang']['confirmation_message_sent'];
						}
					?>
				</h4>
			</div>
			<form id="verify_email_phone_form" class="verify_email_phone_form" method="POST">
				<div class="modal-body">
					<div id="verify_email_phone_form_alert"></div>
					<span class="verfy_sett_email_phone_ico"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="currentColor" d="M17,19V5H7V19H17M17,1A2,2 0 0,1 19,3V21A2,2 0 0,1 17,23H7C5.89,23 5,22.1 5,21V3C5,1.89 5.89,1 7,1H17M9,7H15V9H9V7M9,11H13V13H9V11Z" /></svg></span>
					<p id="verify_email_phone_desc">
						<?php 
							if ($wo['config']['sms_or_email'] == 'mail') {
								echo $wo['lang']['confirmation_email_text'];
							}
							elseif ($wo['config']['sms_or_email'] == 'sms') {
								echo $wo['lang']['confirmation_message_text'];
							}
						?>
					</p>
					<div class="form-group verfy_sett_email_phone">
						<input type="text" class="form-control" name="code" placeholder="<?php echo $wo['lang']['confirmation_code']; ?>">
					</div>
				</div>
				<div class="modal-footer">
					<div class="ball-pulse"><div></div><div></div><div></div></div>
					<button id="verify_email_phone_form_btn" type="submit" class="btn btn-main"><?php echo $wo['lang']['send']; ?></button>
				</div>
			</form>
		</div>
	</div>
</div>


<?php
$user_id            = $wo['user']['user_id'];
$wo['is_admin']     = Wo_IsAdmin();
$wo['is_moderoter'] = Wo_IsModerator();

$wo['setting']['admin'] = false;
if (isset($_GET['user']) && !empty($_GET['user']) && ($wo['is_admin'] === true || $wo['is_moderoter'] === true)) {
    if (Wo_UserExists($_GET['user']) === false) {
        header("Location: " . $wo['config']['site_url']);
        exit();
    }
    $user_id                = Wo_UserIdFromUsername($_GET['user']);
    $wo['setting']['admin'] = true;
}
$wo['setting'] = Wo_UserData($user_id);
if ($wo['is_moderoter']) {
  if ($wo['setting']['admin'] == 1) {
       header("Location: " . $wo['config']['site_url']);
       exit();
  }
}
$wo['setting']['fileds'] = Wo_UserFieldsData($user_id);
$wo['setting_page'] = 'general-setting';
$pages_array = array(
   'general-setting',
   'profile-setting',
   'privacy-setting',
   'change-password-setting',
   'social-links',
   'design-setting',
   'avatar-setting',
   'email-setting',
   'verification',
   'blocked-users',
   'transaction_log',
   'my_points',
   'manage-sessions',
   'notifications-settings',
   'two-factor',
   'my_info',
   'invitation_links',
   'experience',
   'certifications',
   'projects',
   'tiers',
   'monetization',
);
if ($wo['setting']['user_id'] == $wo['user']['user_id']) {
  $pages_array = array(
   'general-setting',
   'profile-setting',
   'privacy-setting',
   'change-password-setting',
   'social-links',
   'delete-account',
   'design-setting',
   'avatar-setting',
   'email-setting',
   'verification',
   'blocked-users',
   'transaction_log',
   'my_points',
   'manage-sessions',
   'notifications-settings',
   'two-factor',
   'my_info',
   'invitation_links',
   'experience',
   'certifications',
   'projects',
   'tiers',
   'monetization',
   );
}
if ($wo['config']['store_system'] == 'on') {
  $pages_array[] = 'addresses';
}
if ($wo['config']['affiliate_system'] == 1) {
  $pages_array[] = 'affiliates';
}
if ($wo['config']['affiliate_system'] == 1 || $wo['config']['point_allow_withdrawal'] == 1 || $wo['config']['funding_system'] == 1) {
	$pages_array[] = 'payments';
}
if (!empty($_GET['page'])) {
   if (in_array($_GET['page'], $pages_array)) {
      $wo['setting_page'] = $_GET['page'];
   }
   if ($wo['config']['deleteAccount'] != 1 && $wo['setting_page'] == 'delete-account') {
   	$wo['setting_page'] = 'general-setting';
   }
}
$wo['user_setting'] = '';
if (!empty($_GET['user'])) {
    $wo['user_setting'] = 'user=' . $_GET['user']. '&';
}

$wo['googleQR'] = '';
$wo['authyQR'] = '';
$wo['methodCount'] = 0;
$wo['factor_used'] = $wo['lang']['two_factor'];

if ($wo['setting_page'] == 'two-factor') {

	if ($wo['setting']['two_factor_method'] == 'google') {
        $wo['factor_used'] = $wo['lang']['google_authenticator'];
    }

    if ($wo['setting']['two_factor_method'] == 'authy') {
        $wo['factor_used'] = $wo['lang']['authy_app'];
    }

    if ($wo['config']['two_factor'] == 1) {
        $wo['methodCount'] += 1;
    }

    if ($wo['config']['google_authenticator'] == '1') {
        $wo['methodCount'] += 1;
        require_once 'assets/libraries/google_auth/vendor/autoload.php';
        if (empty($wo['setting']['google_secret'])) {
            $google2fa = new \PragmaRX\Google2FA\Google2FA();
            $wo['setting']['google_secret'] = $google2fa->generateSecretKey();
            $db->where('user_id',$wo['setting']['user_id'])->update(T_USERS,['google_secret' => $wo['setting']['google_secret']]);
        }

        $google2fa = new \PragmaRX\Google2FA\Google2FA();
          
        $text = $google2fa->getQRCodeUrl(
	        $wo['config']['siteTitle'],
	        $wo['setting']['username'],
	        $wo['setting']['google_secret']
        );
            
        $wo['googleQR'] = 'https://qrcode.tec-it.com/API/QRCode?data='.$text;
    }

    if ($wo['config']['authy_settings'] == '1') {
        $wo['methodCount'] += 1;
        $wo['countries_codes'] = getCountriesCodes();
        
    }

}

if ($wo['setting_page'] == 'invitation_links') {
	$wo['available_links'] = Wo_GetAvailableLinks($wo['setting']['user_id']);
	if ($wo['config']['user_links_limit'] > 0) {
		$wo['generated_links'] = $wo['config']['user_links_limit'] - $wo['available_links'];
	}
	else{
		$wo['generated_links'] = Wo_GetGeneratedLinks($wo['setting']['user_id']);
	}
	$wo['used_links'] = Wo_GetUsedLinks($wo['setting']['user_id']);
}
if ($wo['setting_page'] == 'addresses' && $wo['config']['store_system'] == 'on') {
	$wo['address_html'] = '';
    $wo['addresses'] = $db->where('user_id',$wo['setting']['user_id'])->orderBy('id','DESC')->get(T_USER_ADDRESS);
    if (!empty($wo['addresses'])) {
        foreach ($wo['addresses'] as $key => $wo['address']) {
            $wo['address_html'] .= Wo_LoadPage("setting/includes/addresses_list");
        }
    }
}

if ($wo['setting_page'] == 'monetization' && $wo['config']['monetization'] == 1) {
    $wo['monetization'] = '';
    $wo['monetization_html'] = '';
    $wo['monetizations'] = $db->where('user_id',$wo['setting']['user_id'])->orderBy('id','DESC')->get(T_USER_MONETIZATION);
    if (!empty($wo['monetizations'])) {
        foreach ($wo['monetizations'] as $key => $wo['monetization']) {
            $wo['monetization_html'] .= Wo_LoadPage("setting/includes/monetization_list");
        }
    }
}

if ($wo['setting_page'] == 'tiers' && $wo['config']['website_mode'] == 'patreon') {
	$wo['tiers_html'] = '';
    $wo['tiers'] = $db->where('user_id',$wo['setting']['user_id'])->orderBy('id','DESC')->get(T_USER_TIERS);
    if (!empty($wo['tiers'])) {
        foreach ($wo['tiers'] as $key => $wo['tier']) {
            $wo['tiers_html'] .= Wo_LoadPage("setting/includes/tiers_list");
        }
    }
}
if ($wo['setting_page'] == 'experience') {
	$wo['experience_html'] = '';
    $wo['experiences'] = $db->where('user_id',$wo['setting']['user_id'])->orderBy('id','DESC')->get(T_USER_EXPERIENCE);
    if (!empty($wo['experiences'])) {
        foreach ($wo['experiences'] as $key => $wo['experience']) {
            $wo['experience_html'] .= Wo_LoadPage("setting/includes/experience_list");
        }
    }
}
if ($wo['setting_page'] == 'certifications') {
	$wo['certification_html'] = '';
    $wo['certifications'] = $db->where('user_id',$wo['setting']['user_id'])->orderBy('id','DESC')->get(T_USER_CERTIFICATION);
    if (!empty($wo['certifications'])) {
        foreach ($wo['certifications'] as $key => $wo['certification']) {
            $wo['certification_html'] .= Wo_LoadPage("setting/includes/certification_list");
        }
    }
}
if ($wo['setting_page'] == 'projects') {
	$wo['projects_html'] = '';
    $wo['projects'] = $db->where('user_id',$wo['setting']['user_id'])->orderBy('id','DESC')->get(T_USER_PROJECTS);
    if (!empty($wo['projects'])) {
        foreach ($wo['projects'] as $key => $wo['project']) {
            $wo['projects_html'] .= Wo_LoadPage("setting/includes/project_list");
        }
    }
}
?>

<div class="page-margin">
	<div class="row setting-panel" style="position:relative;">
		<div class="col-md-4 sidebar sett_page wo_new_sett_sidee" id="wo_main_sett_side"><?php echo Wo_LoadPage('setting/user-setting-sidebar');?></div>
		<div class="col-md-8 sett_page wo_new_sett_pagee" id="wo_main_sett_mid"><?php echo Wo_LoadPage("setting/" . $wo['setting_page']); ?></div>
	</div>
</div>