PluginProbe
Chartify – WordPress Chart Plugin / 3.4.8
Chartify – WordPress Chart Plugin v3.4.8
3.8.0 3.7.9 3.7.8 3.7.7 3.7.6 3.7.5 trunk 1.0.0 3.0.0 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.0.6 3.0.7 3.0.8 3.0.9 3.1.0 3.1.1 3.1.2 3.1.3 3.1.4 3.1.5 3.1.6 All 83 releases
chart-builder / includes / admin / class-chart-builder-install-skin.php

class-chart-builder-install-skin.php in Chartify – WordPress Chart Plugin 3.4.8, at includes/admin/class-chart-builder-install-skin.php

51 lines 1020 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace ChartBuilder\Helpers;
4
5 /** \WP_Upgrader_Skin class */
6 require_once ABSPATH . 'wp-admin/includes/class-wp-upgrader-skin.php';
7
8 class Chart_Builder_Plugin_Silent_Upgrader_Skin extends \WP_Upgrader_Skin {
9
10 /**
11 * Empty out the header of its HTML content and only check to see if it has
12 * been performed or not.
13 *
14 * @since 6.4.0.4
15 */
16 public function header() {
17 }
18
19 /**
20 * Empty out the footer of its HTML contents.
21 *
22 * @since 6.4.0.4
23 */
24 public function footer() {
25 }
26
27 /**
28 * Instead of outputting HTML for errors, just return them.
29 * Ajax request will just ignore it.
30 *
31 * @since 6.4.0.4
32 *
33 * @param array $errors Array of errors with the install process.
34 *
35 * @return array
36 */
37 public function error( $errors ) {
38 return $errors;
39 }
40
41 /**
42 * Empty out JavaScript output that calls function to decrement the update counts.
43 *
44 * @since 6.4.0.4
45 *
46 * @param string $type Type of update count to decrement.
47 */
48 public function decrement_update_count( $type ) {
49 }
50 }
51