HEX
Server: Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.30
System: Linux iZj6c1151k3ad370bosnmsZ 3.10.0-1160.76.1.el7.x86_64 #1 SMP Wed Aug 10 16:21:17 UTC 2022 x86_64
User: root (0)
PHP: 7.4.30
Disabled: NONE
Upload Files
File: /var/www/html/www.winghung.com/wp-content/plugins/conversational-forms/classes/sync/factory.php
<?php
/**
 * Factory for creating or retrieving from cache Qcformbuilder_Forms_Field_Sync objects
 *
 *
 * @package Caldera_Forms Modified by QuantumCloud
 * @author    Josh Pollock <Josh@CalderaWP.com>
 * @license   GPL-2.0+
 * @link
 * @copyright 2016 CalderaWP LLC
 */
class Qcformbuilder_Forms_Sync_Factory {

	/**
	 * Object cache (non-persistent) for sync objects
	 *
	 * Not using actual object cache, see: https://github.com/QcformbuilderWP/Qcformbuilder-Forms/issues/1860
	 *
	 * @since 1.5.5
	 *
	 * @var array
	 */
	protected static $cache;


	/**
	 * Get a Qcformbuilder_Forms_Field_Sync by creating it or pulling from cache
	 *
	 * @since 1.5.0
	 *
	 * @param array $form Form config
	 * @param array $field Field config
	 * @param string $field_base_id Field ID attribute
	 * @param int|null $current_form_count Optional. Current form ID.  Global is used if not provided
	 *
	 * @return Qcformbuilder_Forms_Sync_Sync|Qcformbuilder_Forms_Sync_HTML|Qcformbuilder_Forms_Sync_Summary
	 */
	public static function get_object( $form, $field, $field_base_id, $current_form_count = null ){
		if( ! $current_form_count ){
			$current_form_count = Qcformbuilder_Forms_Render_Util::get_current_form_count();
		}

		$id = self::identifier( $form[ 'ID' ], $field[ 'ID' ], $field_base_id, $current_form_count );

		$object = self::get_cache( $id );
		if ( ! is_object( $object ) ) {
			$object = self::create( $form, $field, $field_base_id, $current_form_count );
			self::add_to_cache( $id, $object );
		}

		return $object;

	}

	/**
	 * Get identifier for cache
	 *
	 * @since 1.5.0
	 *
	 * @param string $form_id ID of form
	 * @param string $field_id If of field
	 * @param string $field_base_id Field ID attribute
	 * @param int|null $current_form_count Optional. Current form ID.  Global is used if not provided
	 *
	 * @return string
	 */
	public static function identifier( $form_id, $field_id, $field_base_id, $current_form_count ){
		if( ! $current_form_count ){
			$current_form_count = Qcformbuilder_Forms_Render_Util::get_current_form_count();
		}

		return md5( $form_id . $field_id . $field_base_id . $current_form_count );
	}

	/**
	 * Clear cache
	 *
	 * @since 1.5.0.4
	 *
	 * @uses "qcformbuilder_forms_save_form" action
	 */
	public static function clear_cache(){
		self::$cache = array();
	}



	/**
	 * Get object from object cache
	 *
	 * @since 1.5.0
	 *
	 * @param string $identifier Unique identifier for this object
	 *
	 * @return bool|Qcformbuilder_Forms_Sync_Sync|Qcformbuilder_Forms_Sync_HTML
	 */
	protected static function get_cache( $identifier ){
		if( isset( self::$cache[ $identifier ] ) &&  is_object( self::$cache[ $identifier ] ) ){
			return self::$cache[ $identifier ];
		}

		return false;

	}

	/**
	 * Place object in cache
	 *
	 * @since 1.5.0
	 *
	 * @param string $identifier Unique identifier for this object
	 * @param Qcformbuilder_Forms_Sync_Sync|Qcformbuilder_Forms_Sync_HTML $object Object tocache
	 */
	protected static function add_to_cache( $identifier, Qcformbuilder_Forms_Sync_Sync $object ){
		self::$cache[ $identifier ] = $object;
	}

	/**
	 * Create object
	 *
	 * This is the actual factory, but not exposed publicly, because Josh wanted to force cache/container usage
	 *
	 * @since 1.5.0
	 *
	 * @param array $form Form config
	 * @param array $field Field config
	 * @param string $field_base_id Field ID attribute
	 *
	 * @return Qcformbuilder_Forms_Sync_Sync|Qcformbuilder_Forms_Sync_HTML|Qcformbuilder_Forms_Sync_Calc|Qcformbuilder_Forms_Sync_Summary
	 */
	protected static function create( $form, $field, $field_base_id, $current_form_count ){
		$type = Qcformbuilder_Forms_Field_Util::get_type( $field );
		switch( $type ) {
			case 'html' :
				return new  Qcformbuilder_Forms_Sync_HTML( $form, $field, $field_base_id, $current_form_count );
			break;
			case 'calculation' :
				return new  Qcformbuilder_Forms_Sync_Calc( $form, $field, $field_base_id, $current_form_count );
			break;
			case 'summary' :
				return new Qcformbuilder_Forms_Sync_Summary( $form, $field, $field_base_id, $current_form_count);
			break;
			default :
				return new  Qcformbuilder_Forms_Sync_Sync( $form, $field, $field_base_id, $current_form_count );
			break;
		}

	}




}