Exemplo n.º 1
0
/**
 * Return array of user name, to be used in display name user field
 * @param  integer $user_id
 * @return array
 * @since 2.1
 */
function ap_user_get_display_name_option($user_id = false)
{
    $user_id = ap_parameter_empty(@$user_id, @ap_user_get_the_ID());
    $user = ap_user_get_the_meta(false, $user_id);
    $public_display = array();
    if (!empty($user['nickname'])) {
        $public_display[$user['nickname']] = $user['nickname'];
    }
    if (!empty($user['user_login'])) {
        $public_display[$user['user_login']] = $user['user_login'];
    }
    if (!empty($user['first_name'])) {
        $public_display[$user['first_name']] = $user['first_name'];
    }
    if (!empty($user['last_name'])) {
        $public_display[$user['last_name']] = $user['last_name'];
    }
    if (!empty($user['first_name']) && !empty($user['last_name'])) {
        $public_display[$user['first_name'] . ' ' . $user['last_name']] = $user['first_name'] . ' ' . $user['last_name'];
        $public_display[$user['last_name'] . ' ' . $user['first_name']] = $user['last_name'] . ' ' . $user['first_name'];
    }
    return $public_display;
}
Exemplo n.º 2
0
/**
 * Return answer time
 * @param  boolean|integer $answer_id      If outside of loop, post ID can be passed.
 * @param  integer         $format         WP time format.
 * @return string
 */
function ap_answer_get_the_time($answer_id = false, $format = '')
{
    $answer_id = ap_parameter_empty($answer_id, @ap_answer_get_the_answer_id());
    return get_post_time($format, true, $answer_id, true);
}
Exemplo n.º 3
0
function ap_question_get_the_time_relative($question_id = false)
{
    $question_id = ap_parameter_empty($question_id, @ap_question_get_the_ID());
    return ap_human_time(ap_question_get_the_time($question_id, 'U')) . __(' ago', 'ap');
}
Exemplo n.º 4
0
function ap_post_status_description($post_id = false)
{
    $post_id = ap_parameter_empty($post_id, @ap_question_get_the_ID());
    $post = get_post($post_id);
    $post_type = $post->post_type == 'question' ? __('Question', 'ap') : __('Answer', 'ap');
    if (ap_have_parent_post($post_id) && $post->post_type != 'answer') {
        ?>
        <div id="ap_post_status_desc_<?php 
        echo $post_id;
        ?>
" class="ap-notice blue clearfix">
            <?php 
        echo ap_icon('link', true);
        ?>
            <span><?php 
        printf(__('Question is asked for %s.', 'ap'), '<a href="' . get_permalink(ap_question_get_the_post_parent()) . '">' . get_the_title(ap_question_get_the_post_parent()) . '</a>');
        ?>
</span>
        </div>
    <?php 
    }
    if (is_private_post($post_id)) {
        ?>
        <div id="ap_post_status_desc_<?php 
        echo $post_id;
        ?>
" class="ap-notice gray clearfix">
            <i class="apicon-lock"></i><span><?php 
        printf(__('%s is marked as a private, only admin and post author can see.', 'ap'), $post_type);
        ?>
</span>
        </div>
    <?php 
    }
    if (is_post_waiting_moderation($post_id)) {
        ?>
        <div id="ap_post_status_desc_<?php 
        echo $post_id;
        ?>
" class="ap-notice yellow clearfix">
            <i class="apicon-info"></i><span><?php 
        printf(__('%s is waiting for approval by moderator.', 'ap'), $post_type);
        ?>
</span>
        </div>
    <?php 
    }
    if (is_post_closed($post_id) && $post->post_type != 'answer') {
        ?>
        <div id="ap_post_status_desc_<?php 
        echo $post_id;
        ?>
" class="ap-notice red clearfix">
            <?php 
        echo ap_icon('cross', true);
        ?>
<span><?php 
        printf(__('%s is closed, new answer are not accepted.', 'ap'), $post_type);
        ?>
</span>
        </div>
    <?php 
    }
    if ($post->post_status == 'trash') {
        ?>
        <div id="ap_post_status_desc_<?php 
        echo $post_id;
        ?>
" class="ap-notice red clearfix">
            <?php 
        echo ap_icon('cross', true);
        ?>
<span><?php 
        printf(__('%s has been trashed, you can delete it permanently from wp-admin.', 'ap'), $post_type);
        ?>
</span>
        </div>
    <?php 
    }
}
Exemplo n.º 5
0
function ap_question_get_the_time_relative($question_id = false)
{
    $question_id = ap_parameter_empty($question_id, @ap_question_get_the_ID());
    return ap_question_get_the_time($question_id, 'U');
}