BBP_Admin::update_screen()
Update all bbPress forums across all sites
Description Description
Source Source
File: includes/admin/classes/class-bbp-admin.php
public static function update_screen() {
// Get action
$action = isset( $_GET['action'] ) ? $_GET['action'] : ''; ?>
<div class="wrap">
<h1 class="wp-heading-inline"><?php esc_html_e( 'Update Forum', 'bbpress' ); ?></h1>
<hr class="wp-header-end">
<?php
// Taking action
switch ( $action ) {
case 'bbp-update' :
// Run the full updater
bbp_version_updater(); ?>
<p><?php esc_html_e( 'All done!', 'bbpress' ); ?></p>
<a class="button" href="index.php?page=bbp-update"><?php esc_html_e( 'Go Back', 'bbpress' ); ?></a>
<?php
break;
case 'show' :
default : ?>
<p><?php esc_html_e( 'You can update your forum through this page. Hit the link below to update.', 'bbpress' ); ?></p>
<p><a class="button" href="index.php?page=bbp-update&action=bbp-update"><?php esc_html_e( 'Update Forum', 'bbpress' ); ?></a></p>
<?php break;
} ?>
</div><?php
}
Changelog Changelog
| Version | Description |
|---|---|
| 2.1.0 | Introduced. |