HEX
Server: Apache/2.4.58 (Ubuntu)
System: Linux ubuntu-8gb-hel1-1 6.8.0-55-generic #57-Ubuntu SMP PREEMPT_DYNAMIC Wed Feb 12 23:42:21 UTC 2025 x86_64
User: www-data (33)
PHP: 8.1.32
Disabled: NONE
Upload Files
File: /var/www/agighana.org_backup/acmethemes.php
<?php
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

if ( ! class_exists( 'Advanced_Import_Theme_Acmethemes' ) ) {

	/**
	 * Functions related to About Block
	 *
	 * @package Advanced Import
     * @subpackage Advanced_Import_Theme_Acmethemes
	 * @since 1.0.5
	 */

	class Advanced_Import_Theme_Acmethemes extends Advanced_Import_Theme_Template_Library_Base {


		/**
		 * Theme author
		 * This class is created for acmethemes theme
		 * Check for author
		 *
		 * @since 1.0.5
		 * @access   private
		 */
		private $theme_author = 'acmethemes';

		/**
		 * Gets an instance of this object.
		 * Prevents duplicate instances which avoid artefacts and improves performance.
		 *
		 * @static
		 * @access public
		 * @since 1.0.5
		 * @return object
		 */
		public static function get_instance() {

			// Store the instance locally to avoid private static replication
			static $instance = null;

			// Only run these methods if they haven't been ran previously
			if ( null === $instance ) {
				$instance = new self();
			}

			// Always return the instance
			return $instance;

		}

		/**
		 * Load block library
		 * Used for blog template loading
		 *
		 * @since 1.0.5
		 * @package    Acmethemes
		 * @author     Acmethemes <info@acmethemes.com>
		 *
		 * @param$current_demo_list array
		 * @return array
		 */
		public function add_template_library( $current_demo_list ) {
			/*common check*/
			if ( advanced_import_get_current_theme_author() != $this->theme_author ) {
				return $current_demo_list;
			}

			/*
			for acmethemes only
			check if acmethemes template library function exist*/
			if ( function_exists( 'run_acme_demo_setup' ) ) {
				return $current_demo_list;
			}

			/*finally fetch template library data from live*/
			$templates_list = array();

			$url       = 'https://www.acmeit.org/wp-json/acmethemes-demo-api/v1/fetch_templates/?theme-slug=' . esc_attr( advanced_import_get_current_theme_slug() );
			$body_args = array(
				/*API version*/
				'api_version' => wp_get_theme()['Version'],
				/*lang*/
				'site_lang'   => get_bloginfo( 'language' ),
			);
			$raw_json  = wp_safe_remote_get(
				$url,
				array(
					'timeout' => 100,
					'body'    => $body_args,
				)
			);

			if ( ! is_wp_error( $raw_json ) ) {
				$demo_server = json_decode( wp_remote_retrieve_body( $raw_json ), true );
				if ( json_last_error() === JSON_ERROR_NONE ) {
					if ( is_array( $demo_server ) ) {
						$templates_list = $demo_server;
					}
				}
			}

			return array_merge( $current_demo_list, $templates_list );
		}
	}
}
Advanced_Import_Theme_Acmethemes::get_instance()->run();