Bulk_Upgrader_Skin::after()publicWP 1.0

Метод класса: Bulk_Upgrader_Skin{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

$Bulk_Upgrader_Skin = new Bulk_Upgrader_Skin();
$Bulk_Upgrader_Skin->after( $title );
$title(строка)
-
По умолчанию: ''

Код Bulk_Upgrader_Skin::after() WP 6.4.3

public function after( $title = '' ) {
	echo '</p></div>';
	if ( $this->error || ! $this->result ) {
		if ( $this->error ) {
			$after_error_message = sprintf( $this->upgrader->strings['skin_update_failed_error'], $title, '<strong>' . $this->error . '</strong>' );
		} else {
			$after_error_message = sprintf( $this->upgrader->strings['skin_update_failed'], $title );
		}
		wp_admin_notice(
			$after_error_message,
			array(
				'additional_classes' => array( 'error' ),
			)
		);

		echo '<script type="text/javascript">jQuery(\'#progress-' . esc_js( $this->upgrader->update_current ) . '\').show();</script>';
	}
	if ( $this->result && ! is_wp_error( $this->result ) ) {
		if ( ! $this->error ) {
			echo '<div class="updated js-update-details" data-update-details="progress-' . esc_attr( $this->upgrader->update_current ) . '">' .
				'<p>' . sprintf( $this->upgrader->strings['skin_update_successful'], $title ) .
				' <button type="button" class="hide-if-no-js button-link js-update-details-toggle" aria-expanded="false">' . __( 'More details.' ) . '<span class="dashicons dashicons-arrow-down" aria-hidden="true"></span></button>' .
				'</p></div>';
		}

		echo '<script type="text/javascript">jQuery(\'.waiting-' . esc_js( $this->upgrader->update_current ) . '\').hide();</script>';
	}

	$this->reset();
	$this->flush_output();
}