X7ROOT File Manager
Current Path:
/home/hamdjcne/public_html/wp-content/themes/hub/bbpress
home
/
hamdjcne
/
public_html
/
wp-content
/
themes
/
hub
/
bbpress
/
ðŸ“
..
📄
content-archive-forum.php
(673 B)
📄
content-archive-topic.php
(827 B)
📄
content-search.php
(762 B)
📄
content-single-forum.php
(1.12 KB)
📄
content-single-reply.php
(475 B)
📄
content-single-topic-lead.php
(2.14 KB)
📄
content-single-topic.php
(927 B)
📄
content-single-user.php
(939 B)
📄
content-single-view.php
(579 B)
📄
content-statistics.php
(1.72 KB)
📄
content-topic-tag-edit.php
(378 B)
📄
feedback-logged-in.php
(205 B)
📄
feedback-no-access.php
(420 B)
📄
feedback-no-forums.php
(211 B)
📄
feedback-no-replies.php
(213 B)
📄
feedback-no-search.php
(227 B)
📄
feedback-no-topics.php
(211 B)
📄
form-anonymous.php
(1.44 KB)
📄
form-forum.php
(5.18 KB)
📄
form-protected.php
(284 B)
📄
form-reply-move.php
(3.31 KB)
📄
form-reply.php
(5.87 KB)
📄
form-search.php
(663 B)
📄
form-topic-merge.php
(3.94 KB)
📄
form-topic-split.php
(4.49 KB)
📄
form-topic-tag.php
(4.33 KB)
📄
form-topic.php
(7.52 KB)
📄
form-user-edit.php
(6.7 KB)
📄
form-user-login.php
(1.4 KB)
📄
form-user-lost-pass.php
(920 B)
📄
form-user-register.php
(1.36 KB)
📄
form-user-roles.php
(332 B)
📄
loop-forums.php
(1.02 KB)
📄
loop-replies.php
(1.43 KB)
📄
loop-search-forum.php
(1.05 KB)
📄
loop-search-reply.php
(1.53 KB)
📄
loop-search-topic.php
(2.03 KB)
📄
loop-search.php
(1.02 KB)
📄
loop-single-forum.php
(1.92 KB)
📄
loop-single-reply.php
(1.72 KB)
📄
loop-single-topic.php
(2.88 KB)
📄
loop-topics.php
(1.1 KB)
📄
pagination-replies.php
(456 B)
📄
pagination-search.php
(443 B)
📄
pagination-topics.php
(455 B)
📄
user-details.php
(3.14 KB)
📄
user-favorites.php
(844 B)
📄
user-profile.php
(962 B)
📄
user-replies-created.php
(877 B)
📄
user-subscriptions.php
(1.52 KB)
📄
user-topics-created.php
(876 B)
Editing: form-forum.php
<?php /** * New/Edit Forum * * @package bbPress * @subpackage Theme */ ?> <?php if ( bbp_is_forum_edit() ) : ?> <div id="bbpress-forums"> <?php bbp_breadcrumb(); ?> <?php bbp_single_forum_description( array( 'forum_id' => bbp_get_forum_id() ) ); ?> <?php endif; ?> <?php if ( bbp_current_user_can_access_create_forum_form() ) : ?> <div id="new-forum-<?php bbp_forum_id(); ?>" class="bbp-forum-form"> <form id="new-post" name="new-post" method="post" action="<?php the_permalink(); ?>"> <?php do_action( 'bbp_theme_before_forum_form' ); ?> <fieldset class="bbp-form"> <legend> <?php if ( bbp_is_forum_edit() ) printf( __( 'Now Editing “%s”', 'hub' ), bbp_get_forum_title() ); else bbp_is_single_forum() ? printf( __( 'Create New Forum in “%s”', 'hub' ), bbp_get_forum_title() ) : esc_html_e( 'Create New Forum', 'hub' ); ?> </legend> <?php do_action( 'bbp_theme_before_forum_form_notices' ); ?> <?php if ( !bbp_is_forum_edit() && bbp_is_forum_closed() ) : ?> <div class="bbp-template-notice"> <p><?php esc_html_e( 'This forum is closed to new content, however your account still allows you to do so.', 'hub' ); ?></p> </div> <?php endif; ?> <?php if ( current_user_can( 'unfiltered_html' ) ) : ?> <div class="bbp-template-notice"> <p><?php esc_html_e( 'Your account has the ability to post unrestricted HTML content.', 'hub' ); ?></p> </div> <?php endif; ?> <?php do_action( 'bbp_template_notices' ); ?> <div> <?php do_action( 'bbp_theme_before_forum_form_title' ); ?> <p> <label for="bbp_forum_title"><?php printf( __( 'Forum Name (Maximum Length: %d):', 'hub' ), bbp_get_title_max_length() ); ?></label><br /> <input type="text" id="bbp_forum_title" value="<?php bbp_form_forum_title(); ?>" tabindex="<?php bbp_tab_index(); ?>" size="40" name="bbp_forum_title" maxlength="<?php bbp_title_max_length(); ?>" /> </p> <?php do_action( 'bbp_theme_after_forum_form_title' ); ?> <?php do_action( 'bbp_theme_before_forum_form_content' ); ?> <?php bbp_the_content( array( 'context' => 'forum' ) ); ?> <?php do_action( 'bbp_theme_after_forum_form_content' ); ?> <?php if ( ! ( bbp_use_wp_editor() || current_user_can( 'unfiltered_html' ) ) ) : ?> <p class="form-allowed-tags"> <label><?php _e( 'You may use these <abbr title="HyperText Markup Language">HTML</abbr> tags and attributes:','hub' ); ?></label><br /> <code><?php bbp_allowed_tags(); ?></code> </p> <?php endif; ?> <?php do_action( 'bbp_theme_before_forum_form_type' ); ?> <p> <label for="bbp_forum_type"><?php _e( 'Forum Type:', 'hub' ); ?></label><br /> <?php bbp_form_forum_type_dropdown(); ?> </p> <?php do_action( 'bbp_theme_after_forum_form_type' ); ?> <?php do_action( 'bbp_theme_before_forum_form_status' ); ?> <p> <label for="bbp_forum_status"><?php _e( 'Status:', 'hub' ); ?></label><br /> <?php bbp_form_forum_status_dropdown(); ?> </p> <?php do_action( 'bbp_theme_after_forum_form_status' ); ?> <?php do_action( 'bbp_theme_before_forum_form_status' ); ?> <p> <label for="bbp_forum_visibility"><?php _e( 'Visibility:', 'hub' ); ?></label><br /> <?php bbp_form_forum_visibility_dropdown(); ?> </p> <?php do_action( 'bbp_theme_after_forum_visibility_status' ); ?> <?php do_action( 'bbp_theme_before_forum_form_parent' ); ?> <p> <label for="bbp_forum_parent_id"><?php _e( 'Parent Forum:', 'hub' ); ?></label><br /> <?php bbp_dropdown( array( 'select_id' => 'bbp_forum_parent_id', 'show_none' => __( '(No Parent)', 'hub' ), 'selected' => bbp_get_form_forum_parent(), 'exclude' => bbp_get_forum_id() ) ); ?> </p> <?php do_action( 'bbp_theme_after_forum_form_parent' ); ?> <?php do_action( 'bbp_theme_before_forum_form_submit_wrapper' ); ?> <div class="bbp-submit-wrapper"> <?php do_action( 'bbp_theme_before_forum_form_submit_button' ); ?> <button type="submit" tabindex="<?php bbp_tab_index(); ?>" id="bbp_forum_submit" name="bbp_forum_submit" class="button submit"><?php _e( 'Submit', 'hub' ); ?></button> <?php do_action( 'bbp_theme_after_forum_form_submit_button' ); ?> </div> <?php do_action( 'bbp_theme_after_forum_form_submit_wrapper' ); ?> </div> <?php bbp_forum_form_fields(); ?> </fieldset> <?php do_action( 'bbp_theme_after_forum_form' ); ?> </form> </div> <?php elseif ( bbp_is_forum_closed() ) : ?> <div id="no-forum-<?php bbp_forum_id(); ?>" class="bbp-no-forum"> <div class="bbp-template-notice"> <p><?php printf( __( 'The forum ‘%s’ is closed to new content.', 'hub' ), bbp_get_forum_title() ); ?></p> </div> </div> <?php else : ?> <div id="no-forum-<?php bbp_forum_id(); ?>" class="bbp-no-forum"> <div class="bbp-template-notice"> <p><?php is_user_logged_in() ? _e( 'You cannot create new forums.', 'hub' ) : _e( 'You must be logged in to create new forums.', 'hub' ); ?></p> </div> </div> <?php endif; ?> <?php if ( bbp_is_forum_edit() ) : ?> </div> <?php endif; ?>
Upload File
Create Folder