condition check to avoid in_array warning
This commit is contained in:
parent
7103382fec
commit
29ff0549a5
@ -81,14 +81,16 @@ function fancytokens_civicrm_tokens( &$tokens ){
|
||||
|
||||
}
|
||||
$type_array = explode( "," , $p_type); // Contributions Activity
|
||||
if ( false == ( in_array("Participant", $type_array ) || in_array("Membership", $type_array ) || in_array("Household", $type_array ) || in_array("Contributions", $type_array ) || in_array("Activity", $type_array ) )) {
|
||||
|
||||
$key = 'communitynews.standaloneprofile___'.$cur['id'] ;
|
||||
$label = $cur['title'].' (id: '.$cur['id'].') :: Forms';
|
||||
|
||||
$tokens['communitynews'][$key] = $label;
|
||||
|
||||
|
||||
if ( is_array( $type_array ) ) {
|
||||
if ( false == ( in_array("Participant", $type_array ) || in_array("Membership", $type_array ) || in_array("Household", $type_array ) || in_array("Contributions", $type_array ) || in_array("Activity", $type_array ) )) {
|
||||
|
||||
$key = 'communitynews.standaloneprofile___'.$cur['id'] ;
|
||||
$label = $cur['title'].' (id: '.$cur['id'].') :: Forms';
|
||||
|
||||
$tokens['communitynews'][$key] = $label;
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user