Why Gemfury? 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-engine   php

Repository URL to install this package:

Version: 2.7.7 

/ forms / common / field-description.php

<?php
/**
 * Field description template
 */

if ( 'heading' === $args['type'] ) {
	$class = 'jet-form__heading-desc';
	$tag   = 'div';
} else {
	$class = 'jet-form__desc';
	$tag   = 'small';
}

printf(
	'<%1$s class="%2$s">%3$s</%1$s>',
	$tag,
	$class,
	$args['desc']
);