Learn more  » Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Bower components Debian packages RPM packages NuGet packages

jsarnowski / jsarnowski/jet-appointments-booking   php

Repository URL to install this package:

Version: 1.3.3 

/ public / email-order-details-plain.php

<?php
/**
 * WooCommerce order details
 */
?>
<?php _e( 'Appointment Details', 'jet-appointments-booking' ); ?>
<?php
	foreach ( $details as $item ) {
		echo '- ';
			if ( ! empty( $item['key'] ) ) {
				echo $item['key'] . ': ';
			}

			if ( ! empty( $item['is_html'] ) ) {
				echo $item['display'];
			} else {
				echo '<strong>' . $item['display'] . '</strong>';
			}

		echo '
';
	}
?>