HEX
Server: Apache/2.4.65 (Debian)
System: Linux web6 5.10.0-36-amd64 #1 SMP Debian 5.10.244-1 (2025-09-29) x86_64
User: innocamp (1028)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /home/fps/public_html/wp-content/plugins/formidable/deprecated/FrmEntryMetaDeprecated.php
<?php
if ( ! defined( 'ABSPATH' ) ) {
	die( 'You are not allowed to call this page directly.' );
}

/**
 * @since 2.03.05
 * @deprecated 2.03.05
 * @codeCoverageIgnore
 */
class FrmEntryMetaDeprecated {

	/**
	 * @deprecated 2.03.05
	 */
	public static function add_entry_meta( $entry_id, $field_id, $meta_key = null, $meta_value ) {
		_deprecated_function( __FUNCTION__, '2.03.05', 'FrmEntryMeta::add_entry_meta' );

		return FrmEntryMeta::add_entry_meta( $entry_id, $field_id, $meta_key, $meta_value );
	}

	/**
	 * @deprecated 2.03.05
	 */
	public static function update_entry_meta( $entry_id, $field_id, $meta_key = null, $meta_value ) {
		_deprecated_function( __FUNCTION__, '2.03.05', 'FrmEntryMeta::update_entry_meta' );

		return FrmEntryMeta::update_entry_meta( $entry_id, $field_id, $meta_key, $meta_value );
	}

	/**
	 * @deprecated 2.03.05
	 */
	public static function update_entry_metas( $entry_id, $values ) {
		_deprecated_function( __FUNCTION__, '2.03.05', 'FrmEntryMeta::update_entry_metas' );

		return FrmEntryMeta::update_entry_metas( $entry_id, $values );
	}

	/**
	 * @deprecated 2.03.05
	 */
	public static function duplicate_entry_metas( $old_id, $new_id ) {
		_deprecated_function( __FUNCTION__, '2.03.05', 'FrmEntryMeta::duplicate_entry_metas' );
		FrmEntryMeta::duplicate_entry_metas( $old_id, $new_id );
	}

	/**
	 * @deprecated 2.03.05
	 */
	public static function delete_entry_meta( $entry_id, $field_id ) {
		_deprecated_function( __FUNCTION__, '2.03.05', 'FrmEntryMeta::delete_entry_meta' );

		return FrmEntryMeta::delete_entry_meta( $entry_id, $field_id );
	}

	/**
	 * @deprecated 2.03.05
	 */
	public static function clear_cache() {
		_deprecated_function( __FUNCTION__, '2.03.05', 'FrmEntryMeta::clear_cache' );
		FrmEntryMeta::clear_cache();
	}

	/**
	 * @deprecated 2.03.05
	 */
	public static function get_meta_value( $entry, $field_id ) {
		_deprecated_function( __FUNCTION__, '2.03.05', 'FrmEntryMeta::get_meta_value' );

		return FrmEntryMeta::get_meta_value( $entry, $field_id );
	}

	/**
	 * @deprecated 2.03.05
	 */
	public static function get_entry_meta_by_field( $entry_id, $field_id ) {
		_deprecated_function( __FUNCTION__, '2.03.05', 'FrmEntryMeta::get_entry_meta_by_field' );

		return FrmEntryMeta::get_entry_meta_by_field( $entry_id, $field_id );
	}

	/**
	 * @deprecated 2.03.05
	 */
	public static function get_entry_metas_for_field( $field_id, $order = '', $limit = '', $args = array() ) {
		_deprecated_function( __FUNCTION__, '2.03.05', 'FrmEntryMeta::get_entry_metas_for_field' );

		return FrmEntryMeta::get_entry_metas_for_field( $field_id, $order, $limit, $args );
	}

	/**
	 * @deprecated 2.03.05
	 */
	public static function get_entry_meta_info( $entry_id ) {
		_deprecated_function( __FUNCTION__, '2.03.05', 'FrmEntryMeta::get_entry_meta_info' );

		return FrmEntryMeta::get_entry_meta_info( $entry_id );
	}

	/**
	 * @deprecated 2.03.05
	 */
	public static function getAll( $where = array(), $order_by = '', $limit = '', $stripslashes = false ) {
		_deprecated_function( __FUNCTION__, '2.03.05', 'FrmEntryMeta::getAll' );

		return FrmEntryMeta::getAll( $where, $order_by, $limit, $stripslashes );
	}

	/**
	 * @deprecated 2.03.05
	 */
	public static function getEntryIds( $where = array(), $order_by = '', $limit = '', $unique = true, $args = array() ) {
		_deprecated_function( __FUNCTION__, '2.03.05', 'FrmEntryMeta::getEntryIds' );

		return FrmEntryMeta::getEntryIds( $where, $order_by, $limit, $unique, $args );
	}

	/**
	 * @deprecated 2.03.05
	 */
	public static function search_entry_metas( $search, $field_id = '', $operator ) {
		_deprecated_function( __FUNCTION__, '2.03.05', 'FrmEntryMeta::search_entry_metas' );

		return FrmEntryMeta::search_entry_metas( $search, $field_id, $operator );
	}
}