123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223 |
- <?php
- acf_register_store( 'hook-variations' );
- function acf_add_filter_variations( $filter = '', $variations = array(), $index = 0 ) {
-
- acf_get_store( 'hook-variations' )->set(
- $filter,
- array(
- 'type' => 'filter',
- 'variations' => $variations,
- 'index' => $index,
- )
- );
-
-
- add_filter( $filter, '_acf_apply_hook_variations', 10, 10 );
- }
- function acf_add_action_variations( $action = '', $variations = array(), $index = 0 ) {
-
- acf_get_store( 'hook-variations' )->set(
- $action,
- array(
- 'type' => 'action',
- 'variations' => $variations,
- 'index' => $index,
- )
- );
-
-
- add_action( $action, '_acf_apply_hook_variations', 10, 10 );
- }
- function _acf_apply_hook_variations() {
-
- $filter = current_filter();
-
- $args = func_get_args();
-
- $variations = acf_get_store( 'hook-variations' )->get( $filter );
- $index = $variations['index'];
- $type = $variations['type'];
- $variations = $variations['variations'];
-
- $field = $args[ $index ];
-
- foreach ( $variations as $variation ) {
-
-
- if ( isset( $field[ "_$variation" ] ) ) {
- $value = $field[ "_$variation" ];
- } elseif ( isset( $field[ $variation ] ) ) {
- $value = $field[ $variation ];
- } else {
- continue;
- }
-
- if ( $type === 'filter' ) {
- $args[0] = apply_filters_ref_array( "$filter/$variation=$value", $args );
-
- } else {
- do_action_ref_array( "$filter/$variation=$value", $args );
- }
- }
-
- return $args[0];
- }
- acf_register_store( 'deprecated-hooks' );
- function acf_add_deprecated_filter( $deprecated, $version, $replacement ) {
-
- acf_get_store( 'deprecated-hooks' )->append(
- array(
- 'type' => 'filter',
- 'deprecated' => $deprecated,
- 'replacement' => $replacement,
- 'version' => $version,
- )
- );
-
-
- add_filter( $replacement, '_acf_apply_deprecated_hook', 10, 10 );
- }
- function acf_add_deprecated_action( $deprecated, $version, $replacement ) {
-
- acf_get_store( 'deprecated-hooks' )->append(
- array(
- 'type' => 'action',
- 'deprecated' => $deprecated,
- 'replacement' => $replacement,
- 'version' => $version,
- )
- );
-
-
- add_filter( $replacement, '_acf_apply_deprecated_hook', 10, 10 );
- }
- function _acf_apply_deprecated_hook() {
-
- $current_hook = current_filter();
-
- $args = func_get_args();
-
- $deprecated_hooks = acf_get_store( 'deprecated-hooks' )->query( array( 'replacement' => $current_hook ) );
-
- foreach ( $deprecated_hooks as $hook ) {
-
- if ( isset( $hook['deprecated'] ) && has_filter( $hook['deprecated'] ) ) {
-
-
-
- if ( $hook['type'] === 'filter' ) {
- $args[0] = apply_filters_ref_array( $hook['deprecated'], $args );
- } else {
- do_action_ref_array( $hook['deprecated'], $args );
- }
- }
- }
-
- return $args[0];
- }
|