# poll-maker/6.3.5/includes/admin/class-poll-maker-install-skin.php

Poll Maker by AYS – Versus Polls, Anonymous Polls, Image Polls, version 6.3.5. 51 lines.

- Page: https://pluginprobe.com/plugins/poll-maker/6.3.5/code/includes/admin/class-poll-maker-install-skin.php
- Raw: https://pluginprobe.com/plugins/poll-maker/6.3.5/raw/includes/admin/class-poll-maker-install-skin.php
- Modified: 2026-04-30T10:31:34+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/poll-maker/6.3.5/code/includes/admin/class-poll-maker-install-skin.php#L10-L20`.

```php
<?php

namespace PollMaker\Helpers;

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

class Poll_Maker_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 1.3.9
	 */
	public function header() {
	}

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

	/**
	 * Instead of outputting HTML for errors, just return them.
	 * Ajax request will just ignore it.
	 *
	 * @since 1.3.9
	 *
	 * @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 1.3.9
	 *
	 * @param string $type Type of update count to decrement.
	 */
	public function decrement_update_count( $type ) {
	}
}

```
