本文整理汇总了PHP中bp_registration_needs_activation函数的典型用法代码示例。如果您正苦于以下问题:PHP bp_registration_needs_activation函数的具体用法?PHP bp_registration_needs_activation怎么用?PHP bp_registration_needs_activation使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了bp_registration_needs_activation函数的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: _e
?>
<h2><?php
_e('Sign Up Complete!', 'buddypress');
?>
</h2>
<?php
do_action('template_notices');
?>
<?php
do_action('bp_before_registration_confirmed');
?>
<?php
if (bp_registration_needs_activation()) {
?>
<p><?php
_e('You have successfully created your account! To begin using this site you will need to activate your account via the email we have just sent to your address.', 'buddypress');
?>
</p>
<?php
} else {
?>
<p><?php
_e('You have successfully created your account! Please log in using the username and password you have just created.', 'buddypress');
?>
</p>
<?php
}
?>
示例2: bp_ajax_register_form_function
//.........这里部分代码省略.........
{
jQuery('.error').hide();
var serialized = jQuery('#ajax_signup_form').serialize();
var data = serialized;
jQuery.post(ajaxurl, data, function(response) {
response = eval('('+response+')');
if(response['status'] == 'error') {
var errors = response['errors'];
for(i in errors) {
jQuery('#'+i+"_error").html(errors[i]);
jQuery('#'+i+"_error").fadeIn(300);
}
} else {
if(response['status'] == 'user-error') {
alert(response['error-msg']);
} else if (response['status'] == 'success') {
document.getElementById('ajax_signup_form').reset();
jQuery('#ajax_signup_form').fadeOut(300,function(){
jQuery('.success_message').fadeIn(400,function(){
myinterval = window.setInterval(hideSuccessMessage, 4000);
});
});
} else {
alert('Unknown Error Occured.');
}
}
jQuery('#si_refresh_reg a').trigger('click');
});
}
</script>
<div class="success_message">
<?php
if (bp_registration_needs_activation()) {
?>
<p><?php
_e('You have successfully created your account! To begin using this site you will need to activate your account via the email we have just sent to your address.', 'buddypress');
?>
</p>
<?php
} else {
?>
<p><?php
_e('You have successfully created your account! Please log in using the username and password you have just created.', 'buddypress');
?>
</p>
<?php
}
?>
</div>
<form action="" onSubmit="bp_ajax_submit_register_form(); return false;" name="signup_form" id="ajax_signup_form" class="standard-form" method="post" enctype="multipart/form-data">
<h2><?php
_e(' ', 'buddypress');
?>
</h2>
<?php
do_action('template_notices');
?>
<?php
do_action('bp_before_account_details_fields');
?>
<div class="register-section ajax-register-section" id="basic-details-section">