Sid Gifari File Manager
🏠 Root
/
home2
/
iuywvcmy
/
public_html
/
wp-content
/
plugins
/
everest-forms
/
includes
/
admin
/
Editing: class-evf-admin-addons.php
<?php /** * Addons Page * * @package EverestForms/Admin * @version 1.6.0 */ defined( 'ABSPATH' ) || exit; /** * Addons Class. */ class EVF_Admin_Addons { /** * Get sections for the addons screen. * * @return array of objects */ public static function get_sections() { $addon_sections = get_transient( 'evf_addons_sections_list' ); if ( false === $addon_sections ) { $addon_sections = evf_get_json_file_contents( 'assets/extensions-json/addon-sections.json' ); if ( $addon_sections ) { set_transient( 'evf_addons_sections_list', $addon_sections, WEEK_IN_SECONDS ); } } return apply_filters( 'everest_forms_extensions_sections', $addon_sections ); } /** * Get section content for the extensions screen. * * @return array */ public static function get_extension_data() { $extension_data = get_transient( 'evf_extensions_section_list' ); if ( false === $extension_data ) { $extension_data = evf_get_json_file_contents( 'assets/extensions-json/sections/all_extensions.json' ); if ( ! empty( $extension_data->products ) ) { set_transient( 'evf_extensions_section_list', $extension_data, WEEK_IN_SECONDS ); } } return apply_filters( 'everest_forms_extensions_section_data', $extension_data->products ); } /** * Handles output of the addons page in admin. */ public static function output() { error_log( print_r( 'output', true ) ); $addons = array(); $sections = self::get_sections(); $refresh_url = add_query_arg( array( 'page' => 'evf-addons', 'action' => 'evf-addons-refresh', 'evf-addons-nonce' => wp_create_nonce( 'refresh' ), ), admin_url( 'admin.php' ) ); $license_plan = evf_get_license_plan(); $current_section = isset( $_GET['section'] ) ? sanitize_text_field( wp_unslash( $_GET['section'] ) ) : '_all'; // phpcs:ignore WordPress.Security.NonceVerification if ( '_featured' !== $current_section ) { $category = isset( $_GET['section'] ) ? sanitize_text_field( wp_unslash( $_GET['section'] ) ) : null; // phpcs:ignore WordPress.Security.NonceVerification $addons = self::get_extension_data( $category ); } /** * Addon page view. * * @uses $addons * @uses $sections * @uses $refresh_url * @uses $current_section */ include_once dirname( __FILE__ ) . '/views/html-admin-page-addons.php'; // phpcs:ignore } }
Save
Cancel