Bdb_Tokens::bdb_possible_tokens( array $tokens = array(), array $args = array() )
Possible tokens.
Contents
Parameters Parameters
- $tokens
-
(Optional)
Default value: array()
- $args
-
(Optional)
Default value: array()
Return Return
(array)
Source Source
File: src/integrations/buddyboss/tokens/bdb-tokens.php
public function bdb_possible_tokens( $tokens = array(), $args = array() ) { $trigger_integration = $args['integration']; $trigger_meta = $args['meta']; $fields = [ [ 'tokenId' => 'BDBUSER', 'tokenName' => __( 'Avatar URL', 'uncanny-automator' ), 'tokenType' => 'text', 'tokenIdentifier' => 'BDBUSERAVATAR', ], ]; // Get BDB xprofile fields from DB. global $wpdb; $fields_table = $wpdb->prefix . "bp_xprofile_fields"; $xprofile_fields = $wpdb->get_results( "SELECT * FROM {$fields_table} WHERE parent_id = 0 ORDER BY field_order ASC" ); if ( ! empty( $xprofile_fields ) ) { foreach ( $xprofile_fields as $field ) { if ( 'socialnetworks' === $field->type ) { $child_fields = $wpdb->get_results( "SELECT * FROM {$fields_table} WHERE parent_id = {$field->id} ORDER BY field_order ASC" ); if ( ! empty( $child_fields ) ) { foreach ( $child_fields as $child_field ) { $fields[] = [ 'tokenId' => 'BDBUSER', 'tokenName' => $field->name . ' - ' . $child_field->name, 'tokenType' => 'text', 'tokenIdentifier' => 'BDBXPROFILE:' . $field->id . '|' . $child_field->name, ]; } } } elseif ( 'membertypes' === $field->type ) { $fields[] = [ 'tokenId' => 'BDBUSER', 'tokenName' => $field->name, 'tokenType' => 'text', 'tokenIdentifier' => 'BDBXPROFILE:' . $field->id . '|membertypes', ]; } else { $fields[] = [ 'tokenId' => 'BDBUSER', 'tokenName' => $field->name, 'tokenType' => 'text', 'tokenIdentifier' => 'BDBXPROFILE:' . $field->id, ]; } } } if ( isset( $args['triggers_meta']['code'] ) && 'BDBACTIVITYSTRM' === $args['triggers_meta']['code'] ) { $fields[] = [ 'tokenId' => 'ACTIVITY_ID', 'tokenName' => __( 'Activity ID', 'uncanny-automator' ), 'tokenType' => 'text', 'tokenIdentifier' => 'BDBUSERACTIVITY', ]; $fields[] = [ 'tokenId' => 'ACTIVITY_CONTENT', 'tokenName' => __( 'Activity content', 'uncanny-automator' ), 'tokenType' => 'text', 'tokenIdentifier' => 'BDBUSERACTIVITY', ]; } $tokens = array_merge( $tokens, $fields ); return $tokens; }
Expand full source code Collapse full source code View on Github