Skip to content

Commit a3bfe6b

Browse files
committed
Generate stubs for ACF PRO 6.0.5
1 parent 042f419 commit a3bfe6b

File tree

1 file changed

+18
-2
lines changed

1 file changed

+18
-2
lines changed

acf-pro-stubs.php

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class ACF
1515
*
1616
* @var string
1717
*/
18-
public $version = '6.0.4';
18+
public $version = '6.0.5';
1919
/**
2020
* The plugin settings array.
2121
*
@@ -14848,14 +14848,30 @@ function acf_sanitize_request_args($args = array())
1484814848
}
1484914849
/**
1485014850
* Sanitizes file upload arrays.
14851-
*
14851+
*
14852+
* @since 6.0.4
14853+
*
1485214854
* @param array $args The file array.
1485314855
*
1485414856
* @return array
1485514857
*/
1485614858
function acf_sanitize_files_array(array $args = array())
1485714859
{
1485814860
}
14861+
/**
14862+
* Sanitizes file upload values within the array.
14863+
*
14864+
* This addresses nested file fields within repeaters and groups.
14865+
*
14866+
* @since 6.0.5
14867+
*
14868+
* @param array $array The file upload array.
14869+
* @param string $sanitize_function Callback used to sanitize array value.
14870+
* @return array
14871+
*/
14872+
function acf_sanitize_files_value_array($array, $sanitize_function)
14873+
{
14874+
}
1485914875
/**
1486014876
* acf_add_filter_variations
1486114877
*

0 commit comments

Comments
 (0)