AMELIABOOKING_TOKENS::register_reservation_tokens( $tokens = array(), $args = array() )
Source Source
File: src/integrations/ameliabooking/tokens/ameliabooking-tokens.php
public function register_reservation_tokens( $tokens = array(), $args = array() ) { if ( ! automator_do_identify_tokens() ) { return $tokens; } $trigger_integration = $args['integration']; $trigger_meta = $args['meta']; $tokens_collection = array_merge( $this->get_reservation_tokens(), $this->get_reservation_tokens_pro() ); $arr_column_tokens_collection = array_column( $tokens_collection, 'name' ); array_multisort( $arr_column_tokens_collection, SORT_ASC, $tokens_collection ); $tokens = array(); foreach ( $tokens_collection as $token ) { $tokens[] = array( 'tokenId' => str_replace( ' ', '_', $token['id'] ), 'tokenName' => $token['name'], 'tokenType' => 'text', 'tokenIdentifier' => strtoupper( 'AMELIA_' . $token['id'] ), ); } return $tokens; }
Expand full source code Collapse full source code View on Github