| Server IP : 216.238.66.20 / Your IP : 216.73.216.51 Web Server : nginx/1.30.4 System : Linux woropds 5.15.0-187-generic #197-Ubuntu SMP Fri Jul 17 19:17:01 UTC 2026 x86_64 User : root ( 0) PHP Version : 8.2.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/sweetheart.mx/htdocs/wp-content/plugins/pods/includes/compatibility/ |
Upload File : |
<?php
// Don't load directly.
if ( ! defined( 'ABSPATH' ) ) {
die( '-1' );
}
/**
* Compatibility functions for integration with other plugins.
*
* @package Pods
*/
/**
* Enable backwards compatibility with ACF functions.
*
* @param bool $acf_backwards_compatibility Whether to enable backwards compatibility for ACF functions.
*
* @since 2.7.17
*/
$acf_backwards_compatibility = apply_filters( 'pods_acf_backwards_compatibility', true ); // phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound
if ( $acf_backwards_compatibility && ! class_exists( 'ACF' ) ) {
if ( ! function_exists( 'the_field' ) ) {
/**
* Backwards compatibility function for the_field() from ACF.
*
* @param string|array $field The field name, or an associative array of parameters.
* @param mixed|false $id The ID or slug to load a single item, array of $params to run find.
*
* @since 2.7.17
*/
// phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedFunctionFound
function the_field( $field, $id = false ) {
// @codingStandardsIgnoreLine
echo pods_field_display( null, $id, $field, true );
}
}
if ( ! function_exists( 'get_field' ) ) {
/**
* Backwards compatibility function for get_field() from ACF.
*
* @param string|array $field The field name, or an associative array of parameters.
* @param mixed|false $id The ID or slug to load a single item, array of $params to run find.
*
* @return mixed Field value.
*
* @since 2.7.17
*/
// phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedFunctionFound
function get_field( $field, $id = false ) {
return pods_field( null, $id, $field, true );
}
}
if ( ! function_exists( 'update_field' ) ) {
/**
* Backwards compatibility function for update_field() from ACF.
*
* @param string|array $field The field name, or an associative array of parameters.
* @param mixed $value The value to save.
* @param mixed|false $id The ID or slug to load a single item, array of $params to run find.
*
* @return int|false The item ID or false if not saved.
*
* @since 2.7.17
*/
// phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedFunctionFound
function update_field( $field, $value, $id = false ) {
return pods_field_update( null, $id, $field, $value );
}
}
if ( ! function_exists( 'delete_field' ) ) {
/**
* Backwards compatibility function for delete_field() from ACF.
*
* @param string|array $field The field name, or an associative array of parameters.
* @param mixed|false $id The ID or slug to load a single item, array of $params to run find.
*
* @return int|false The item ID or false if not saved.
*
* @since 2.7.17
*/
// phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedFunctionFound
function delete_field( $field, $id = false ) {
return pods_field_update( null, $id, $field, null );
}
}
if ( ! shortcode_exists( 'acf' ) ) {
/**
* Backwards compatibility function for [acf] shortcode from ACF.
*
* @param array $tags An associative array of shortcode properties.
* @param string $content A string that represents a template override.
*
* @return string
*
* @since 2.7.17
*/
function pods_acf_shortcode( $tags, $content ) {
$post_id = null;
if ( ! empty( $tags['post_id'] ) ) {
$post_id = $tags['post_id'];
}
$tags = array(
'field' => $tags['field'],
'id' => $post_id,
);
return pods_shortcode( $tags, $content );
}
add_shortcode( 'acf', 'pods_acf_shortcode' );
}//end if
/**
* These functions below will do nothing for now. We might add some sort of further compatibility later.
*/
if ( ! function_exists( 'get_field_object' ) ) {
/**
* Backwards compatibility function for get_field_object() from ACF.
*
* @return array
*
* @since 2.7.17
*/
// phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedFunctionFound
function get_field_object() {
return array();
}
}
if ( ! function_exists( 'get_fields' ) ) {
/**
* Backwards compatibility function for get_fields() from ACF.
*
* @return array
*
* @since 2.7.17
*/
// phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedFunctionFound
function get_fields() {
return array();
}
}
if ( ! function_exists( 'get_field_objects' ) ) {
/**
* Backwards compatibility function for get_field_objects() from ACF.
*
* @return array
*
* @since 2.7.17
*/
// phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedFunctionFound
function get_field_objects() {
return array();
}
}
if ( ! function_exists( 'have_rows' ) ) {
/**
* Backwards compatibility function for have_rows() from ACF.
*
* @return false
*
* @since 2.7.17
*/
// phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedFunctionFound
function have_rows() {
return false;
}
}
if ( ! function_exists( 'get_sub_field' ) ) {
/**
* Backwards compatibility function for get_sub_field() from ACF.
*
* @return false
*
* @since 2.7.17
*/
// phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedFunctionFound
function get_sub_field() {
return false;
}
}
if ( ! function_exists( 'the_sub_field' ) ) {
/**
* Backwards compatibility function for the_sub_field() from ACF.
*
* @return null
*
* @since 2.7.17
*/
// phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedFunctionFound
function the_sub_field() {
return null;
}
}
if ( ! function_exists( 'get_sub_field_object' ) ) {
/**
* Backwards compatibility function for get_sub_field_object() from ACF.
*
* @return array
*
* @since 2.7.17
*/
// phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedFunctionFound
function get_sub_field_object() {
return array();
}
}
if ( ! function_exists( 'get_row' ) ) {
/**
* Backwards compatibility function for get_row() from ACF.
*
* @return array
*
* @since 2.7.17
*/
// phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedFunctionFound
function get_row() {
return array();
}
}
if ( ! function_exists( 'get_row_index' ) ) {
/**
* Backwards compatibility function for get_row_index() from ACF.
*
* @return int
*
* @since 2.7.17
*/
// phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedFunctionFound
function get_row_index() {
return 0;
}
}
if ( ! function_exists( 'get_row_layout' ) ) {
/**
* Backwards compatibility function for get_row_layout() from ACF.
*
* @return null
*
* @since 2.7.17
*/
// phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedFunctionFound
function get_row_layout() {
return null;
}
}
if ( ! function_exists( 'delete_sub_field' ) ) {
/**
* Backwards compatibility function for delete_sub_field() from ACF.
*
* @return null
*
* @since 2.7.17
*/
// phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedFunctionFound
function delete_sub_field() {
return null;
}
}
if ( ! function_exists( 'update_sub_field' ) ) {
/**
* Backwards compatibility function for update_sub_field() from ACF.
*
* @return null
*
* @since 2.7.17
*/
// phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedFunctionFound
function update_sub_field() {
return null;
}
}
if ( ! function_exists( 'add_row' ) ) {
/**
* Backwards compatibility function for add_row() from ACF.
*
* @return null
*
* @since 2.7.17
*/
// phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedFunctionFound
function add_row() {
return null;
}
}
if ( ! function_exists( 'update_row' ) ) {
/**
* Backwards compatibility function for update_row() from ACF.
*
* @return null
*
* @since 2.7.17
*/
// phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedFunctionFound
function update_row() {
return null;
}
}
if ( ! function_exists( 'delete_row' ) ) {
/**
* Backwards compatibility function for delete_row() from ACF.
*
* @return null
*
* @since 2.7.17
*/
// phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedFunctionFound
function delete_row() {
return null;
}
}
if ( ! function_exists( 'add_sub_row' ) ) {
/**
* Backwards compatibility function for add_sub_row() from ACF.
*
* @return null
*
* @since 2.7.17
*/
// phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedFunctionFound
function add_sub_row() {
return null;
}
}
if ( ! function_exists( 'update_sub_row' ) ) {
/**
* Backwards compatibility function for update_sub_row() from ACF.
*
* @return null
*
* @since 2.7.17
*/
// phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedFunctionFound
function update_sub_row() {
return null;
}
}
if ( ! function_exists( 'delete_sub_row' ) ) {
/**
* Backwards compatibility function for delete_sub_row() from ACF.
*
* @return null
*
* @since 2.7.17
*/
// phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedFunctionFound
function delete_sub_row() {
return null;
}
}
if ( ! function_exists( 'acf_add_options_page' ) ) {
/**
* Backwards compatibility function for acf_add_options_page() from ACF.
*
* @return null
*
* @since 2.7.17
*/
// phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedFunctionFound
function acf_add_options_page() {
return null;
}
}
if ( ! function_exists( 'acf_add_options_sub_page' ) ) {
/**
* Backwards compatibility function for acf_add_options_sub_page() from ACF.
*
* @return null
*
* @since 2.7.17
*/
// phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedFunctionFound
function acf_add_options_sub_page() {
return null;
}
}
if ( ! function_exists( 'acf_form_head' ) ) {
/**
* Backwards compatibility function for acf_form_head() from ACF.
*
* @return null
*
* @since 2.7.17
*/
// phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedFunctionFound
function acf_form_head() {
return null;
}
}
if ( ! function_exists( 'acf_form' ) ) {
/**
* Backwards compatibility function for acf_form() from ACF.
*
* @return null
*
* @since 2.7.17
*/
// phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedFunctionFound
function acf_form() {
return null;
}
}
if ( ! function_exists( 'acf_register_form' ) ) {
/**
* Backwards compatibility function for acf_register_form() from ACF.
*
* @return null
*
* @since 2.7.17
*/
// phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedFunctionFound
function acf_register_form() {
return null;
}
}
}//end if