$title, 'content' => $elm_id, 'options' => $options ); if ( is_callable( $callback ) ) add_action( 'wpcf7_admin_footer', $callback ); return true; } function wpcf7_print_tag_generators() { global $wpcf7_tag_generators; $output = array(); foreach ( (array) $wpcf7_tag_generators as $name => $tg ) { $pane = " " . esc_js( $name ) . ": { "; $pane .= "title: '" . esc_js( $tg['title'] ) . "'"; $pane .= ", content: '" . esc_js( $tg['content'] ) . "'"; foreach ( (array) $tg['options'] as $option_name => $option_value ) { if ( is_int( $option_value ) ) $pane .= ", $option_name: $option_value"; else $pane .= ", $option_name: '" . esc_js( $option_value ) . "'"; } $pane .= " }"; $output[] = $pane; } echo implode( ",\n", $output ) . "\n"; } ?>