mirror of
https://gh.wpcy.net/https://github.com/buddypress/buddypress.git
synced 2026-06-01 06:04:04 +08:00
git-svn-id: https://buddypress.svn.wordpress.org/branches/1.0@1565 cdf35c40-ae34-48e0-9cc9-0c9da1808c22
63 lines
No EOL
1.8 KiB
PHP
63 lines
No EOL
1.8 KiB
PHP
<?php
|
|
/*
|
|
* /userbar.php
|
|
* This is the top level navigation in the theme. It displays the nav links for
|
|
* each component. If there is no user logged in, it will display a small login form.
|
|
*
|
|
* Loaded on URL: All URLs
|
|
*/
|
|
?>
|
|
|
|
<div id="userbar">
|
|
|
|
<h3><?php _e( 'Me', 'buddypress' ) ?></h3>
|
|
|
|
<?php do_action( 'bp_user_bar_before' ) ?>
|
|
|
|
<?php if ( is_user_logged_in() ) : ?>
|
|
|
|
<p class="avatar">
|
|
<?php bp_loggedinuser_avatar_thumbnail() ?>
|
|
</p>
|
|
|
|
<ul id="bp-nav">
|
|
<?php bp_get_nav() ?>
|
|
</ul>
|
|
|
|
<?php else : ?>
|
|
|
|
<p class="avatar">
|
|
<img src="<?php echo BP_PLUGIN_URL . '/bp-core/images/mystery-man.jpg' ?>" alt="No User" width="50" height="50" />
|
|
</p>
|
|
|
|
<p id="login-text"><?php _e( 'You must log in to access your account.', 'buddypress' ) ?></p>
|
|
|
|
<form name="loginform" id="loginform" action="<?php echo site_url('wp-login.php') ?>" method="post">
|
|
|
|
<p>
|
|
<label><?php _e( 'Username', 'buddypress' ) ?><br />
|
|
<input type="text" name="log" id="user_login" class="input" value="<?php echo attribute_escape(stripslashes($user_login)); ?>" /></label>
|
|
</p>
|
|
|
|
<p>
|
|
<label><?php _e( 'Password', 'buddypress' ) ?><br />
|
|
<input type="password" name="pwd" id="user_pass" class="input" value="" /></label>
|
|
</p>
|
|
|
|
<p class="forgetmenot"><label><input name="rememberme" type="checkbox" id="rememberme" value="forever" /> <?php _e( 'Remember Me', 'buddypress' ) ?></label></p>
|
|
|
|
<p class="submit">
|
|
<input type="submit" name="wp-submit" id="wp-submit" value="<?php _e('Log In'); ?>" />
|
|
<input type="hidden" name="redirect_to" value="http://<?php echo $_SERVER['SERVER_NAME'] . $_SERVER['REQUEST_URI'] ?>?nr" />
|
|
<input type="hidden" name="testcookie" value="1" />
|
|
</p>
|
|
|
|
</form>
|
|
|
|
<?php endif; ?>
|
|
|
|
<?php do_action( 'bp_user_bar_after' ) ?>
|
|
|
|
<div class="clear"></div>
|
|
|
|
</div>
|