Example #1
0
function um_user_manage_widget()
{
    if (is_user_logged_in()) {
        $current_user = wp_get_current_user();
        $li_output = '';
        $li_output .= '<li style="line-height:36px;clear: both;">' . um_get_avatar($current_user->ID, '36', um_get_avatar_type($current_user->ID), false) . sprintf(__('登录者 <a href="%1$s">%2$s</a>', 'um'), get_edit_profile_url($current_user->ID), $current_user->display_name) . '<a href="' . wp_logout_url(um_get_current_page_url()) . '" title="' . esc_attr__('登出本帐号') . '">' . __('登出 &raquo;') . '</a></li>';
        if (!filter_var($current_user->user_email, FILTER_VALIDATE_EMAIL)) {
            $li_output .= '<li><a href="' . um_get_user_url('profile') . '#pass">' . __('【重要】请添加正确的邮箱以保证账户安全', 'um') . '</a></li>';
        }
        $shorcut_links[] = array('icon' => '<i class="fa fa-home"></i>', 'title' => __('个人主页', 'um'), 'url' => get_author_posts_url($current_user->ID));
        $shorcut_links[] = array('icon' => '<i class="fa fa-edit"></i>', 'title' => __('编辑资料', 'um'), 'url' => um_get_user_url('profile'));
        if (current_user_can('manage_options')) {
            $shorcut_links[] = array('icon' => '<i class="fa fa-dashboard"></i>', 'title' => __('管理后台', 'um'), 'url' => admin_url());
        }
        $can_post_cat = get_cat_ids();
        if (count($can_post_cat)) {
            $shorcut_links[] = array('icon' => '<i class="fa fa-send"></i>', 'title' => __('文章投稿', 'um'), 'url' => add_query_arg('action', 'new', um_get_user_url('post')));
        }
        $shorcut_links[] = array('icon' => '<i class="fa fa-shopping-cart"></i>', 'title' => __('我的订单', 'um'), 'url' => um_get_user_url('orders'), 'prefix' => '<br>');
        $shorcut_links[] = array('icon' => '<i class="fa fa-user-md"></i>', 'title' => __('会员信息', 'um'), 'url' => um_get_user_url('membership'), 'prefix' => '');
        $shorcut_links[] = array('icon' => '<i class="fa fa-money"></i>', 'title' => __('我的推广', 'um'), 'url' => um_get_user_url('affiliate'));
        if (current_user_can('manage_options')) {
            $shorcut_links[] = array('icon' => '<i class="fa fa-tasks"></i>', 'title' => __('订单管理', 'um'), 'url' => um_get_user_url('siteorders'));
        }
        if (current_user_can('manage_options')) {
            $shorcut_links[] = array('icon' => '<i class="fa fa-tags"></i>', 'title' => __('优惠码', 'um'), 'url' => um_get_user_url('coupon'));
        }
        $shorcut_html = '<li class="active">';
        foreach ($shorcut_links as $shorcut) {
            $shorcut_html .= isset($shorcut['prefix']) ? $shorcut['prefix'] : '';
            $shorcut_html .= '<a href="' . $shorcut['url'] . '">' . $shorcut['icon'] . $shorcut['title'] . '</a>';
        }
        $shorcut_html .= '</li>';
        $credit = intval(get_user_meta($current_user->ID, 'um_credit', true));
        $credit_void = intval(get_user_meta($current_user->ID, 'um_credit_void', true));
        $unread_count = intval(get_um_message($current_user->ID, 'count', "( msg_type='unread' OR msg_type='unrepm' )"));
        $collects = get_user_meta($current_user->ID, 'um_collect', true) ? get_user_meta($current_user->ID, 'um_collect', true) : 0;
        $collects_array = explode(',', $collects);
        $collects_count = $collects != 0 ? count($collects_array) : 0;
        $info_array = array(array('title' => __('文章', 'um'), 'url' => um_get_user_url('post'), 'count' => count_user_posts($current_user->ID)), array('title' => __('评论', 'um'), 'url' => um_get_user_url('comment'), 'count' => get_comments(array('status' => '1', 'user_id' => $current_user->ID, 'count' => true))), array('title' => __('收藏', 'um'), 'url' => um_get_user_url('collect'), 'count' => intval($collects_count)));
        if ($unread_count) {
            $info_array[] = array('title' => __('未读', 'um'), 'url' => um_get_user_url('message'), 'count' => $unread_count);
        }
        $info_array[] = array('title' => __('积分', 'um'), 'url' => um_get_user_url('credit'), 'count' => $credit);
        $info_html = '<li>';
        foreach ($info_array as $info) {
            $info_html .= $info['title'] . '<a href="' . $info['url'] . '"> ' . $info['count'] . '</a>';
        }
        $info_html .= um_whether_signed($current_user->ID);
        $info_html .= '</li>';
        $friend_html = '
	<li>
		<div class="input-group" style="width:100%;">
			<span class="input-group-addon">' . __('本页推广链接', 'um') . '</span>
			<input class="um_aff_url form-control" type="text" class="form-control" value="' . add_query_arg('aff', $current_user->ID, um_canonical_url()) . '">
		</div>
	</li>
	';
        return $li_output . $shorcut_html . $info_html . $friend_html;
    } else {
        $html = '<li><span class="local-account"><a data-sign="0" class="btn btn-primary user-login"><i class="fa fa-wordpress"></i>' . __('本地帐号', 'um') . '</a></span>';
        if (um_get_setting('um_open_qq')) {
            $html .= '<span class="other-sign"><a class="qqlogin btn" href="' . home_url('/?connect=qq&action=login&redirect=' . urlencode(um_get_redirect_uri())) . '"><i class="fa fa-qq"></i><span>' . __('QQ 登 录', 'um') . '</span></a></span>';
        }
        if (um_get_setting('um_open_weibo')) {
            $html .= '<span class="other-sign"><a class="weibologin btn" href="' . home_url('/?connect=weibo&action=login&redirect=' . urlencode(um_get_redirect_uri())) . '"><i class="fa fa-weibo"></i><span>' . __('微博登录', 'um') . '</span></a></span>';
        }
        $html .= '</li>';
        return $html;
    }
}
Example #2
0
									<input type="text" class="form-control" name="post_title" placeholder="<?php 
        _e('在此输入标题', 'um');
        ?>
" value="<?php 
        echo $post_title;
        ?>
" aria-required='true' required>
								</div>
								<div class="form-group">
								<?php 
        wp_editor(wpautop($post_content), 'post_content', array('media_buttons' => true, 'quicktags' => true, 'editor_class' => 'form-control', 'editor_css' => '<style>.wp-editor-container{border:1px solid #ddd;}.switch-html, .switch-tmce{height:25px !important}</style>'));
        ?>
								</div>
								<div class="form-group">
								<?php 
        $can_post_cat = get_cat_ids();
        if ($can_post_cat) {
            $post_cat_output = '<p class="help-block">' . __('选择文章分类', 'um') . '</p>';
            $post_cat_output .= '<select name="post_cat[]" class="form-control">';
            foreach ($can_post_cat as $term_id) {
                $category = get_category($term_id);
                //~ if( (!empty($post_cat)) && in_array($category->term_id,$post_cat))
                $post_cat_output .= '<option value="' . $category->term_id . '">' . $category->name . '</option>';
            }
            $post_cat_output .= '</select>';
            echo $post_cat_output;
        }
        ?>
								</div>
								<div class="form-group text-right">
									<select name="post_status">