Bulk_Upgrader_Skin::feedback

Advertisement

Syntax Syntax

Bulk_Upgrader_Skin::feedback( string $string )

Parameters Parameters

$string

(Required)

Source Source

File: wp-admin/includes/class-bulk-upgrader-skin.php

	 */
	public function feedback( $string, ...$args ) {
		if ( isset( $this->upgrader->strings[ $string ] ) ) {
			$string = $this->upgrader->strings[ $string ];
		}

		if ( strpos( $string, '%' ) !== false ) {
			if ( $args ) {
				$args   = array_map( 'strip_tags', $args );
				$args   = array_map( 'esc_html', $args );
				$string = vsprintf( $string, $args );
			}
		}
		if ( empty( $string ) ) {
			return;
		}
		if ( $this->in_loop ) {
			echo "$string<br />\n";
		} else {
			echo "<p>$string</p>\n";
		}
	}

Advertisement

Advertisement

Leave a Reply