Example #1
0
<?php

require 'admin-action.php';
$topic_id = (int) $_GET['id'];
$topic = get_topic($topic_id);
$super = isset($_GET['super']) && 1 == (int) $_GET['super'] ? 1 : 0;
if (!$topic) {
    bb_die(__('There is a problem with that topic, pardner.'));
}
if (!bb_current_user_can('stick_topic', $topic_id)) {
    wp_redirect(bb_get_uri(null, null, BB_URI_CONTEXT_HEADER));
    exit;
}
bb_check_admin_referer('stick-topic_' . $topic_id);
if (topic_is_sticky($topic_id)) {
    bb_unstick_topic($topic_id);
} else {
    bb_stick_topic($topic_id, $super);
}
if (!($redirect = wp_get_referer())) {
    $redirect = get_topic_link($topic_id);
}
bb_safe_redirect($redirect);
exit;
function bp_forums_sticky_topic($args = '')
{
    /** This action is documented in bp-forums/bp-forums-screens */
    do_action('bbpress_init');
    $r = wp_parse_args($args, array('topic_id' => false, 'mode' => 'stick'));
    extract($r, EXTR_SKIP);
    if ('stick' == $mode) {
        return bb_stick_topic($topic_id);
    } else {
        if ('unstick' == $mode) {
            return bb_unstick_topic($topic_id);
        }
    }
    return false;
}
Example #3
0
function bp_forums_sticky_topic($args = '')
{
    global $bp;
    do_action('bbpress_init');
    $defaults = array('topic_id' => false, 'mode' => 'stick');
    $r = wp_parse_args($args, $defaults);
    extract($r, EXTR_SKIP);
    if ('stick' == $mode) {
        return bb_stick_topic($topic_id);
    } else {
        if ('unstick' == $mode) {
            return bb_unstick_topic($topic_id);
        }
    }
    return false;
}