????JFIF??x?x????'
| Server IP : 79.136.114.73 / Your IP : 216.73.216.191 Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/www.astacus.se/wp-content/themes/x/framework/functions/global/plugins/ |
Upload File : |
<?php
// =============================================================================
// FUNCTIONS/GLOBAL/PLUGINS/BBPRESS.PHP
// -----------------------------------------------------------------------------
// Plugin setup for theme compatibility.
// =============================================================================
// =============================================================================
// TABLE OF CONTENTS
// -----------------------------------------------------------------------------
// 01. Forums
// 02. Topics
// 03. Replies
// 04. Users
// 05. Search
// 06. Breadcrumbs
// 07. Miscellaneous
// =============================================================================
// Forums
// =============================================================================
//
// Filters the output of nested forums within forums.
//
if ( ! function_exists( 'x_bbpress_filter_list_forums' ) ) :
function x_bbpress_filter_list_forums( $r ) {
$r = array(
'before' => '<ul class="bbp-forums-list">',
'after' => '</ul>',
'link_before' => '<li class="bbp-forum">',
'link_after' => '</li>',
'count_before' => '',
'count_after' => '',
'count_sep' => '',
'separator' => '',
'forum_id' => '',
'show_topic_count' => false,
'show_reply_count' => false,
);
return $r;
}
endif;
add_filter( 'bbp_before_list_forums_parse_args', 'x_bbpress_filter_list_forums' );
//
// Removes the single forum description.
//
if ( ! function_exists( 'x_bbpress_remove_single_forum_description' ) ) :
function x_bbpress_remove_single_forum_description() {
return;
}
endif;
add_filter( 'bbp_get_single_forum_description', 'x_bbpress_remove_single_forum_description' );
//
// Add forum actions to the beginning of single forum.
//
if ( ! function_exists( 'x_bbpress_add_actions_single_forum' ) ) :
function x_bbpress_add_actions_single_forum() { ?>
<div class="x-bbp-header">
<div class="actions">
<a href="<?php echo get_post_type_archive_link( bbp_get_forum_post_type() ); ?>"><?php _e( 'To Forums List', '__x__' ); ?></a>
<?php bbp_forum_subscription_link(); ?>
</div>
</div>
<?php }
endif;
add_filter( 'bbp_template_before_single_forum', 'x_bbpress_add_actions_single_forum' );
//
// Multiple functions to wrap various count outputs in a <span> element for
// more flexible styling.
//
if ( ! function_exists( 'x_bbpress_filter_forum_topic_count' ) ) :
function x_bbpress_filter_forum_topic_count( $topics ) {
return '<span class="x-bbp-count">' . $topics . '</span>';
}
endif;
if ( ! function_exists( 'x_bbpress_filter_forum_reply_count' ) ) :
function x_bbpress_filter_forum_reply_count( $replies ) {
return '<span class="x-bbp-count">' . $replies . '</span>';
}
endif;
if ( ! function_exists( 'x_bbpress_filter_forum_post_count' ) ) :
function x_bbpress_filter_forum_post_count( $retval ) {
return '<span class="x-bbp-count">' . $retval . '</span>';
}
endif;
add_filter( 'bbp_get_forum_topic_count', 'x_bbpress_filter_forum_topic_count' );
add_filter( 'bbp_get_forum_topic_count_int', 'x_bbpress_filter_forum_topic_count' );
add_filter( 'bbp_get_forum_reply_count', 'x_bbpress_filter_forum_reply_count' );
add_filter( 'bbp_get_forum_reply_count_int', 'x_bbpress_filter_forum_reply_count' );
add_filter( 'bbp_get_forum_post_count', 'x_bbpress_filter_forum_post_count' );
add_filter( 'bbp_get_forum_post_count_int', 'x_bbpress_filter_forum_post_count' );
// Topics
// =============================================================================
//
// Removes the single topic description.
//
if ( ! function_exists( 'x_bbpress_remove_single_topic_description' ) ) :
function x_bbpress_remove_single_topic_description() {
return;
}
endif;
add_filter( 'bbp_get_single_topic_description', 'x_bbpress_remove_single_topic_description' );
//
// Multiple functions to wrap various count outputs in a <span> element for
// more flexible styling.
//
if ( ! function_exists( 'x_bbpress_filter_topic_voice_count' ) ) :
function x_bbpress_filter_topic_voice_count( $voices ) {
return '<span class="x-bbp-count">' . $voices . '</span>';
}
endif;
if ( ! function_exists( 'x_bbpress_filter_topic_reply_count' ) ) :
function x_bbpress_filter_topic_reply_count( $replies ) {
return '<span class="x-bbp-count">' . $replies . '</span>';
}
endif;
if ( ! function_exists( 'x_bbpress_filter_topic_post_count' ) ) :
function x_bbpress_filter_topic_post_count( $replies ) {
return '<span class="x-bbp-count">' . $replies . '</span>';
}
endif;
add_filter( 'bbp_get_topic_voice_count', 'x_bbpress_filter_topic_voice_count' );
add_filter( 'bbp_get_topic_voice_count_int', 'x_bbpress_filter_topic_voice_count' );
add_filter( 'bbp_get_topic_reply_count', 'x_bbpress_filter_topic_reply_count' );
add_filter( 'bbp_get_topic_reply_count_int', 'x_bbpress_filter_topic_reply_count' );
add_filter( 'bbp_get_topic_post_count', 'x_bbpress_filter_topic_post_count' );
add_filter( 'bbp_get_topic_post_count_int', 'x_bbpress_filter_topic_post_count' );
//
// Filters the output of the topic tags.
//
if ( ! function_exists( 'x_bbpress_filter_get_topic_tag_list' ) ) :
function x_bbpress_filter_get_topic_tag_list( $r ) {
$r['before'] = '<div class="bbp-topic-tags"><span>' . __( 'Topic Tags', '__x__' ) . '</span>';
$r['sep'] = '';
$r['after'] = '</div>';
return $r;
}
endif;
add_filter( 'bbp_before_get_topic_tag_list_parse_args', 'x_bbpress_filter_get_topic_tag_list' );
//
// Filters the output of the topic admin links.
//
if ( ! function_exists( 'x_bbpress_filter_get_topic_admin_links' ) ) :
function x_bbpress_filter_get_topic_admin_links( $r ) {
$r['sep'] = '';
if ( is_user_logged_in() ) {
$r['before'] = '<div class="bbp-admin-links"><div class="x-bbp-admin-links-inner">';
$r['after'] = '</div></div>';
} else {
$r['before'] = '';
$r['after'] = '';
}
return $r;
}
endif;
add_filter( 'bbp_before_get_topic_admin_links_parse_args', 'x_bbpress_filter_get_topic_admin_links' );
//
// Hides topic pagination if amount of topics is less than the topics per
// page option.
//
if ( ! function_exists( 'x_bbpress_show_topic_pagination' ) ) :
function x_bbpress_show_topic_pagination() {
$total_topics = bbpress()->topic_query->found_posts;
if ( bbp_get_topics_per_page() <= $total_topics ) {
return true;
} else {
return false;
}
}
endif;
// Replies
// =============================================================================
//
// Filters the output of the subscription link.
//
if ( ! function_exists( 'x_bbpress_filter_get_user_subscribe_link' ) ) :
function x_bbpress_filter_get_user_subscribe_link( $r ) {
$r['before'] = '';
return $r;
}
endif;
add_filter( 'bbp_before_get_user_subscribe_link_parse_args', 'x_bbpress_filter_get_user_subscribe_link' );
//
// Filters the output of the reply admin links.
//
if ( ! function_exists( 'x_bbpress_filter_get_reply_admin_links' ) ) :
function x_bbpress_filter_get_reply_admin_links( $r ) {
$r['sep'] = '';
if ( is_user_logged_in() ) {
$r['before'] = '<div class="bbp-admin-links"><div class="x-bbp-admin-links-inner">';
$r['after'] = '</div></div>';
} else {
$r['before'] = '';
$r['after'] = '';
}
return $r;
}
endif;
add_filter( 'bbp_before_get_reply_admin_links_parse_args', 'x_bbpress_filter_get_reply_admin_links' );
//
// Add reply actions to the beginning of the replies loop.
//
if ( ! function_exists( 'x_bbpress_add_actions_replies' ) ) :
function x_bbpress_add_actions_replies() { ?>
<?php if ( ! bbp_show_lead_topic() && ! bbp_is_single_user_replies() && ! x_is_buddypress_user() ) : ?>
<div class="x-bbp-header">
<div class="actions">
<a href="<?php echo bbp_get_forum_permalink( bbp_get_topic_forum_id() ); ?>"><?php _e( 'To Parent Forum', '__x__' ); ?></a>
<?php bbp_topic_subscription_link(); ?>
<?php bbp_user_favorites_link(); ?>
</div>
</div>
<?php endif; ?>
<?php }
endif;
add_filter( 'bbp_template_before_replies_loop', 'x_bbpress_add_actions_replies' );
//
// Hides reply pagination if amount of replies is less than the reples per
// page option.
//
if ( ! function_exists( 'x_bbpress_show_reply_pagination' ) ) :
function x_bbpress_show_reply_pagination() {
$total_replies = bbpress()->reply_query->found_posts;
if ( bbp_get_replies_per_page() <= $total_replies ) {
return true;
} else {
return false;
}
}
endif;
// Users
// =============================================================================
//
// Add an informational message about changing user passwords.
//
if ( ! function_exists( 'x_bbpress_user_edit_before_account' ) ) :
function x_bbpress_user_edit_before_account() { ?>
<div class="bbp-template-notice">
<p><?php _e( 'Your password should be at least ten characters long. Use upper and lower case letters, numbers, and symbols to make it even stronger.', 'bbpress' ); ?></p>
</div>
<?php }
endif;
add_action( 'bbp_user_edit_after_account', 'x_bbpress_user_edit_before_account' );
// Search
// =============================================================================
//
// Hides search pagination if amount of search items is less than the search
// items per page option.
//
if ( ! function_exists( 'x_bbpress_show_search_pagination' ) ) :
function x_bbpress_show_search_pagination() {
$total_search_items = bbpress()->search_query->found_posts;
if ( bbp_get_replies_per_page() <= $total_search_items ) {
return true;
} else {
return false;
}
}
endif;
// Breadcrumbs
// =============================================================================
//
// Removes the bbPress breadcrumbs from all default locations (is later
// removed then added back in the breadcrumbs.php file to allow for standard
// output as the breadcrumbs are filtered below to be used there).
//
add_filter( 'bbp_no_breadcrumb', '__return_true' );
//
// Removes the bbPress breadcrumbs from all default locations (is later
// removed then added back in the breadcrumbs.php file to allow for standard
// output as the breadcrumbs are filtered below to be used there).
//
if ( ! function_exists( 'x_bbpress_filter_breadcrumbs' ) ) :
function x_bbpress_filter_breadcrumbs( $r ) {
if ( bbp_is_search() ) {
$current_text = bbp_get_search_title();
} elseif ( bbp_is_forum_archive() ) {
$current_text = bbp_get_forum_archive_title();
} elseif ( bbp_is_topic_archive() ) {
$current_text = bbp_get_topic_archive_title();
} elseif ( bbp_is_single_view() ) {
$current_text = bbp_get_view_title();
} elseif ( bbp_is_single_forum() ) {
$current_text = bbp_get_forum_title();
} elseif ( bbp_is_single_topic() ) {
$current_text = bbp_get_topic_title();
} elseif ( bbp_is_single_reply() ) {
$current_text = bbp_get_reply_title();
} elseif ( bbp_is_topic_tag() || ( get_query_var( 'bbp_topic_tag' ) && ! bbp_is_topic_tag_edit() ) ) {
// Always include the tag name
$tag_data[] = bbp_get_topic_tag_name();
// If capable, include a link to edit the tag
if ( current_user_can( 'manage_topic_tags' ) ) {
$tag_data[] = '<a href="' . esc_url( bbp_get_topic_tag_edit_link() ) . '" class="bbp-edit-topic-tag-link">' . esc_html__( '(Edit)', 'bbpress' ) . '</a>';
}
// Implode the results of the tag data
$current_text = sprintf( __( 'Topic Tag: %s', 'bbpress' ), implode( ' ', $tag_data ) );
} elseif ( bbp_is_topic_tag_edit() ) {
$current_text = __( 'Edit', 'bbpress' );
} else {
$current_text = get_the_title();
}
$r = array(
'before' => '',
'after' => '',
'sep' => x_get_breadcrumb_delimiter(),
'pad_sep' => 0,
'sep_before' => '',
'sep_after' => '',
'crumb_before' => '',
'crumb_after' => '',
'include_home' => false,
'home_text' => x_get_breadcrumb_home_text(),
'include_root' => true,
'root_text' => bbp_get_forum_archive_title(),
'include_current' => true,
'current_text' => $current_text,
'current_before' => x_get_breadcrumb_current_before(),
'current_after' => x_get_breadcrumb_current_after()
);
return $r;
}
endif;
add_filter( 'bbp_before_get_breadcrumb_parse_args', 'x_bbpress_filter_breadcrumbs' );
// Miscellaneous
// =============================================================================
//
// Filter the author link to remove all images.
//
if ( ! function_exists( 'x_bbpress_filter_author_link' ) ) :
function x_bbpress_filter_author_link( $r ) {
$r['type'] = 'name';
return $r;
}
endif;
add_filter( 'bbp_before_get_author_link_parse_args', 'x_bbpress_filter_author_link' );
//
// Remove new post form quicktags.
//
if ( ! function_exists( 'x_bbpress_filter_get_the_content' ) ) :
function x_bbpress_filter_get_the_content( $r ) {
$r['before'] = '<div class="bbp-the-content-wrapper"><label for="bbp_topic_content">' . __( 'Content', '__x__' ) . '</label>';
$r['after'] = '</div>';
$r['textarea_rows'] = 8;
$r['quicktags'] = ( x_get_option( 'x_bbpress_enable_quicktags' ) == '' ) ? false : true;
return $r;
}
endif;
add_filter( 'bbp_before_get_the_content_parse_args', 'x_bbpress_filter_get_the_content' );
//
// Outputs a navigation item with quick links to bbPress-specific components
// such as the forums, et cetera.
//
if ( ! function_exists( 'x_bbpress_navbar_menu' ) ) :
function x_bbpress_navbar_menu( $items, $args ) {
if ( X_BBPRESS_IS_ACTIVE && x_get_option( 'x_bbpress_header_menu_enable' ) == '1' ) {
$submenu_items = '';
$submenu_items .= '<li class="menu-item menu-item-bbpress-navigation"><a href="' . bbp_get_search_url() . '" class="cf"><i class="x-icon-search" data-x-icon="" aria-hidden="true"></i> <span>' . __( 'Forums Search', '__x__' ) . '</span></a></li>';
if ( is_user_logged_in() ) {
$submenu_items .= '<li class="menu-item menu-item-bbpress-navigation"><a href="' . bbp_get_favorites_permalink( get_current_user_id() ) . '" class="cf"><i class="x-icon-star" data-x-icon="" aria-hidden="true"></i> <span>' . __( 'Favorites', '__x__' ) . '</span></a></li>';
$submenu_items .= '<li class="menu-item menu-item-bbpress-navigation"><a href="' . bbp_get_subscriptions_permalink( get_current_user_id() ) . '" class="cf"><i class="x-icon-bookmark" data-x-icon="" aria-hidden="true"></i> <span>' . __( 'Subscriptions', '__x__' ) . '</span></a></li>';
}
if ( ! X_BUDDYPRESS_IS_ACTIVE || X_BUDDYPRESS_IS_ACTIVE && x_get_option( 'x_buddypress_header_menu_enable' ) == '' ) {
if ( ! is_user_logged_in() ) {
$submenu_items .= '<li class="menu-item menu-item-bbpress-navigation"><a href="' . wp_login_url() . '" class="cf"><i class="x-icon-sign-in" data-x-icon="" aria-hidden="true"></i> <span>' . __( 'Log in', '__x__' ) . '</span></a></li>';
} else {
$submenu_items .= '<li class="menu-item menu-item-bbpress-navigation"><a href="' . bbp_get_user_profile_url( get_current_user_id() ) . '" class="cf"><i class="x-icon-cog" data-x-icon="" aria-hidden="true"></i> <span>' . __( 'Profile', '__x__' ) . '</span></a></li>';
}
}
if ( $args->theme_location == 'primary' ) {
$items .= '<li class="menu-item current-menu-parent menu-item-has-children x-menu-item x-menu-item-bbpress">'
. '<a href="' . get_post_type_archive_link( bbp_get_forum_post_type() ) . '" class="x-btn-navbar-bbpress">'
. '<span><i class="x-icon-comment" data-x-icon="" aria-hidden="true"></i><span class="x-hidden-desktop"> ' . __( 'Forums', '__x__' ) . '</span></span>'
. '</a>'
. '<ul class="sub-menu">'
. $submenu_items
. '</ul>'
. '</li>';
}
}
return $items;
}
add_filter( 'wp_nav_menu_items', 'x_bbpress_navbar_menu', 9996, 2 );
endif;