/home/techb158/balacoffee.com/wp-content/plugins/coming-soon/admin/includes
NameSizeModeActions
class-seedprod-landing-pages-table.php136320644editdlrm
class-seedprod-theme-templates-table.php138320644editdlrm
debug-functions.php27240644editdlrm
import-export-functions.php437720644editdlrm
import-export-utilities.php434220644editdlrm
license-functions.php80800644editdlrm
plugin-functions.php358910644editdlrm
product-education-functions.php114230644editdlrm
review-functions.php74370644editdlrm
settings-functions.php89810644editdlrm
setup-wizard-functions.php155700644editdlrm
skin.php22730644editdlrm
skin53.php23630644editdlrm
subscriber-functions.php133250644editdlrm
system-info-functions.php83330644editdlrm
template-functions.php249940644editdlrm
theme-functions.php442060644editdlrm
utility-functions.php99160644editdlrm
utm-functions.php49790644editdlrm
Edit: /home/techb158/balacoffee.com/wp-content/plugins/coming-soon/admin/includes/skin53.php (2363B)
upgrader =& $upgrader; } } /** * Set the upgrader result and store it as a property in the parent class. * * @since 6.0.0 * * @param object $result The result of the install process. */ public function set_result( $result ) { $this->result = $result; } /** * Empty out the header of its HTML content and only check to see if it has * been performed or not. * * @since 6.0.0 */ public function header() { } /** * Empty out the footer of its HTML contents. * * @since 6.0.0 */ public function footer() { } /** * Instead of outputting HTML for errors, json_encode the errors and send them * back to the Ajax script for processing. * * @since 6.0.0 * * @param array $errors Array of errors with the install process. */ public function error( $errors ) { if ( ! empty( $errors ) ) { echo wp_json_encode( array( 'error' => esc_html__( 'There was an error installing the addon. Please try again.', 'coming-soon' ) ) ); die; } } /** * Empty out the feedback method to prevent outputting HTML strings as the install * is progressing. * * @since 6.0.0 * * @param string $string The feedback string. * @param mixed ...$args Optional additional arguments. */ public function feedback( $string, ...$args ) { } }