# chart-builder/3.1.1/includes/admin/class-chart-builder-install-skin.php

Chartify – WordPress Chart Plugin, version 3.1.1. 51 lines.

- Page: https://pluginprobe.com/plugins/chart-builder/3.1.1/code/includes/admin/class-chart-builder-install-skin.php
- Raw: https://pluginprobe.com/plugins/chart-builder/3.1.1/raw/includes/admin/class-chart-builder-install-skin.php
- Modified: 2025-01-07T08:32:32+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/chart-builder/3.1.1/code/includes/admin/class-chart-builder-install-skin.php#L10-L20`.

```php
<?php

namespace ChartBuilder\Helpers;

/** \WP_Upgrader_Skin class */
require_once ABSPATH . 'wp-admin/includes/class-wp-upgrader-skin.php';

class Chart_Builder_Plugin_Silent_Upgrader_Skin extends \WP_Upgrader_Skin {

	/**
	 * Empty out the header of its HTML content and only check to see if it has
	 * been performed or not.
	 *
	 * @since 6.4.0.4
	 */
	public function header() {
	}

	/**
	 * Empty out the footer of its HTML contents.
	 *
	 * @since 6.4.0.4
	 */
	public function footer() {
	}

	/**
	 * Instead of outputting HTML for errors, just return them.
	 * Ajax request will just ignore it.
	 *
	 * @since 6.4.0.4
	 *
	 * @param array $errors Array of errors with the install process.
	 *
	 * @return array
	 */
	public function error( $errors ) {
		return $errors;
	}

	/**
	 * Empty out JavaScript output that calls function to decrement the update counts.
	 *
	 * @since 6.4.0.4
	 *
	 * @param string $type Type of update count to decrement.
	 */
	public function decrement_update_count( $type ) {
	}
}

```
