本文整理汇总了PHP中SwpmUtils::get_incomplete_paid_member_info_by_ip方法的典型用法代码示例。如果您正苦于以下问题:PHP SwpmUtils::get_incomplete_paid_member_info_by_ip方法的具体用法?PHP SwpmUtils::get_incomplete_paid_member_info_by_ip怎么用?PHP SwpmUtils::get_incomplete_paid_member_info_by_ip使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类SwpmUtils
的用法示例。
在下文中一共展示了SwpmUtils::get_incomplete_paid_member_info_by_ip方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: swpm_ty_page_rego_sc
public function swpm_ty_page_rego_sc($args)
{
$output = '';
$settings = SwpmSettings::get_instance();
//If user is logged in then the purchase will be applied to the existing profile
if (SwpmMemberUtils::is_member_logged_in()) {
$username = SwpmMemberUtils::get_logged_in_members_username();
$output .= '<div class="swpm-ty-page-registration-logged-in swpm-yellow-box">';
$output .= '<p>' . SwpmUtils::_('Your membership profile will be updated to reflect the payment.') . '</p>';
$output .= SwpmUtils::_('Your profile username: ') . $username;
$output .= '</div>';
return $output;
}
$output .= '<div class="swpm-ty-page-registration">';
$member_data = SwpmUtils::get_incomplete_paid_member_info_by_ip();
if ($member_data) {
//Found a member profile record for this IP that needs to be completed
$reg_page_url = $settings->get_value('registration-page-url');
$rego_complete_url = add_query_arg(array('member_id' => $member_data->member_id, 'code' => $member_data->reg_code), $reg_page_url);
$output .= '<div class="swpm-ty-page-registration-link swpm-yellow-box">';
$output .= '<p>' . SwpmUtils::_('Click on the following link to complete the registration.') . '</p>';
$output .= '<p><a href="' . $rego_complete_url . '">' . SwpmUtils::_('Click here to complete your paid registration') . '</a></p>';
$output .= '</div>';
} else {
//Nothing found. Check again later.
$output .= '<div class="swpm-ty-page-registration-link swpm-yellow-box">';
$output .= SwpmUtils::_('If you have just made a membership payment then your payment is yet to be processed. Please check back in a few minutes. An email will be sent to you with the details shortly.');
$output .= '</div>';
}
$output .= '</div>';
//end of .swpm-ty-page-registration
return $output;
}