bbp_admin_repair()
Admin repair page
Description
Source
File: bp-forums/admin/tools.php
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 | function bbp_admin_repair() { ?> <div class = "wrap" > <h2 class = "nav-tab-wrapper" ><?php bp_core_admin_tabs( __( 'Tools' , 'buddyboss' ) ); ?></h2> <div class = "nav-settings-subsubsub" > <ul class = "subsubsub" > <?php bp_core_tools_settings_admin_tabs(); ?> </ul> </div> </div> <div class = "wrap" > <div class = "bp-admin-card section-repair_forums" > <h2><?php esc_html_e( 'Repair Forums' , 'buddyboss' ) ?></h2> <p><?php esc_html_e( 'BuddyBoss keeps track of relationships between forums, discussions, replies, and discussion tags, and users. Occasionally these relationships become out of sync, most often after an import or migration. Use the tools below to manually recalculate these relationships.' , 'buddyboss' ); ?></p> <form class = "settings" method= "post" action= "" > <fieldset> <legend><?php esc_html_e( 'Relationships to Repair:' , 'buddyboss' ) ?></legend> <div class = "checkbox" > <?php foreach ( bbp_admin_repair_list() as $item ) : ?> <label><input type= "checkbox" class = "checkbox" name= "<?php echo esc_attr( $item[0] ) . '" id= "' . esc_attr( str_replace( '_', '-', $item[0] ) ); ?>" value= "1" /> <?php echo esc_html( $item [1] ); ?></label> <?php endforeach ; ?> </div> <p class = "submit" > <input class = "button-primary" type= "submit" name= "submit" value= "<?php esc_attr_e( 'Repair Items', 'buddyboss' ); ?>" /> <?php wp_nonce_field( 'bbpress-do-counts' ); ?> </p> </fieldset> </form> <p class = "description" ><?php esc_html_e( 'Some of these tools utilize substantial database resources. Avoid running more than 1 repair job at a time.' , 'buddyboss' ); ?></p> </div> </div> <?php } |
Changelog
Version | Description |
---|---|
bbPress (r2613) | Introduced. |
Questions?
We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.