PluginProbe
Poll Maker by AYS – Versus Polls, Anonymous Polls, Image Polls / 6.3.4
Poll Maker by AYS – Versus Polls, Anonymous Polls, Image Polls v6.3.4
6.4.9 6.4.8 6.4.7 6.4.6 6.4.5 6.4.4 6.4.3 6.4.2 6.4.1 6.4.0 6.3.9 6.3.8 6.3.7 6.3.6 6.3.5 6.3.4 6.3.3 5.6.0 5.6.1 5.6.2 5.6.3 5.6.4 5.6.5 5.6.6 5.6.7 All 152 releases
poll-maker / includes / admin / class-poll-maker-skin.php

class-poll-maker-skin.php in Poll Maker by AYS – Versus Polls, Anonymous Polls, Image Polls 6.3.4, at includes/admin/class-poll-maker-skin.php

28 lines 655 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 use PollMaker\Helpers\Poll_Maker_Plugin_Silent_Upgrader_Skin;
4
5 /**
6 * Skin for on-the-fly addon installations.
7 *
8 * @since 1.0.0
9 * @since 1.3.9 Extend Advanced_Related_Posts_Plugin_Silent_Upgrader_Skin and clean up the class.
10 */
11 class Poll_Maker_Install_Skin extends Poll_Maker_Plugin_Silent_Upgrader_Skin {
12
13 /**
14 * Instead of outputting HTML for errors, json_encode the errors and send them
15 * back to the Ajax script for processing.
16 *
17 * @since 1.0.0
18 *
19 * @param array $errors Array of errors with the install process.
20 */
21 public function error( $errors ) {
22
23 if ( ! empty( $errors ) ) {
24 wp_send_json_error( $errors );
25 }
26 }
27 }
28